Inicial files
This commit is contained in:
parent
6f198178ac
commit
18ab336df3
@ -12,9 +12,10 @@ export {
|
||||
DateRange,
|
||||
Icon,
|
||||
IconButton,
|
||||
Input,
|
||||
NavBag,
|
||||
Select,
|
||||
Svg,
|
||||
Input,
|
||||
ThemeWrapper,
|
||||
Typography,
|
||||
} from './src/components';
|
||||
|
||||
7
platform/ui/src/components/NavBar/NavBag.jsx
Normal file
7
platform/ui/src/components/NavBar/NavBag.jsx
Normal file
@ -0,0 +1,7 @@
|
||||
import React from 'react';
|
||||
|
||||
const NavBag = ({}) => {
|
||||
return <></>;
|
||||
};
|
||||
|
||||
export default NavBag;
|
||||
26
platform/ui/src/components/NavBar/NavBag.mdx
Normal file
26
platform/ui/src/components/NavBar/NavBag.mdx
Normal 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} />
|
||||
2
platform/ui/src/components/NavBar/index.js
Normal file
2
platform/ui/src/components/NavBar/index.js
Normal file
@ -0,0 +1,2 @@
|
||||
import NavBag from './NavBag';
|
||||
export default NavBag;
|
||||
@ -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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user