UNPKG

@roo-ui/components

Version:

10 lines 391 B
import React from 'react'; import { storiesOf } from '@storybook/react'; import { withDocs } from 'storybook-readme'; import ExternalLink from '.'; import README from './README.md'; storiesOf('Components|ExternalLink', module).addDecorator(withDocs(README)).add('default', function () { return React.createElement(ExternalLink, { href: "https://www.qantas.com" }, "Hello world"); });