1.0.3 • Published 9 months ago

@jcomponents/dropdown v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Usage

<Nav>
    <Nav.Item>Home</Nav.Item>
    <Nav.Item>About</Nav.Item>
    <Nav.Item>Contact</Nav.Item>
    ...
</Nav>

If using Next.js, you can pass Link as a property into <Nav> to get the benefits of 'next/link'.

import Link from 'next/link';

<Nav Link={Link}>
    <Nav.Item>Home</Nav.Item>
    <Nav.Item>About</Nav.Item>
    <Nav.Item>Contact</Nav.Item>
    ...
</Nav>