1.0.2 • Published 1 year ago

@jcomponents/latex v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year 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>