Inicial files

This commit is contained in:
Gustavo Lelis 2020-03-27 11:48:28 -03:00 committed by James A. Petts
parent 6f198178ac
commit 18ab336df3
5 changed files with 39 additions and 1 deletions

View File

@ -12,9 +12,10 @@ export {
DateRange,
Icon,
IconButton,
Input,
NavBag,
Select,
Svg,
Input,
ThemeWrapper,
Typography,
} from './src/components';

View File

@ -0,0 +1,7 @@
import React from 'react';
const NavBag = ({}) => {
return <></>;
};
export default NavBag;

View File

@ -0,0 +1,26 @@
---
name: NavBag
menu: Components
route: components/label
---
import { Playground, Props } from 'docz';
import NavBag from './';
# NavBag
## Import
```javascript
import { NavBag } from '@ohif/ui';
```
## Basic usage
<Playground>
<NavBag />
</Playground>
## Properties
<Props of={NavBag} />

View File

@ -0,0 +1,2 @@
import NavBag from './NavBag';
export default NavBag;

View File

@ -4,6 +4,7 @@ import DateRange from './DateRange';
import Icon from './Icon';
import IconButton from './IconButton';
import Input from './Input';
import NavBag from './NavBag';
import Select from './Select';
import Svg from './Svg';
import ThemeWrapper from './ThemeWrapper/';
@ -16,6 +17,7 @@ export {
Icon,
IconButton,
Input,
NavBag,
Select,
Svg,
ThemeWrapper,