@random-ui/nav
v1.0.0-beta.3
Published
## Inslations ```sh yarn add @random-ui/nav ```
Downloads
1
Readme
nav
Inslations
yarn add @random-ui/nav
Usage
import { Nav, Item } from '@random-ui/nav'
const App = () => (
<Nav>
<Item>
Item1
</Item>
<Item>
<span>Item2</span>
</Item>
<Item selected onClick={() => {
console.log('clicked')
}}>
Item 3
</Item>
</Nav>
)