react-toolbox/docs/app/components/layout/main/modules/examples/link_example_1.txt

10 lines
294 B
Plaintext

const LinksTest = () => (
<nav>
<Link active href="#/components/link" label="Work" count={4} icon='business' />
<Link href="#/components/link" label="Blog" icon='speaker_notes' />
<Link href="#/components/link" label="Explore" icon='explore' />
</nav>
);
return <LinksTest />;