import React from 'react'; import { storiesOf } from '@storybook/react'; import { Link } from 'asc-web-components'; import { Container, Row, Col } from 'reactstrap'; const rowStyle = { marginTop: 8, paddingLeft: 20, fontSize: 12 }; const headerStyle = { marginTop: 8, paddingLeft: 20, fontSize: 16, }; storiesOf('Components|Link', module) .addParameters({ viewport: { defaultViewport: 'responsive' } }) .addParameters({ options: { showAddonPanel: false } }) .add('all', () => ( <> Page links: Action links: Another using of action links: ));