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

10 lines
287 B
Plaintext

const LinksTest = () => (
<nav>
<Link 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 />;