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: Bold black page link Bold black action link Black page link Black action link Black hovered page link Black hovered action link Gray page link Gray action link Gray hovered page link Gray hovered action link Blue page link Blue action link Blue hovered page link Blue hovered action link Semitransparent black page link Semitransparent black action link ));