@appearhere/bloom
Version:
Appear Here's pattern library and styleguide
16 lines (14 loc) • 382 B
JavaScript
import React from 'react';
import { storiesOf } from '@storybook/react';
import Link from '../Link/Link';
import linkcss from '../Link/Link.css';
storiesOf('Link', module)
.add('Default view', () => (
<Link
href="https://en.wikipedia.org/wiki/Special:Random"
target="_blank"
className={ linkcss.root }
>
Random Wikipedia article
</Link>
));