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

10 lines
287 B
Plaintext
Raw Normal View History

2015-11-01 11:14:36 +03:00
const LinksTest = () => (
<nav>
2015-11-02 01:17:16 +03:00
<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' />
2015-11-01 11:14:36 +03:00
</nav>
);
return <LinksTest />;