import React from 'react'; import { storiesOf } from '@storybook/react'; import { Link, DropDownItem } 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: console.log('Base button clicked')} label='Base button' /> console.log('Base button2 clicked')} label='Base button2' /> console.log('Base button clicked')} label='Base button' /> console.log('Base button2 clicked')} label='Base button2' /> console.log('Base button3 clicked')} label='Base button3' /> console.log('Base button4 clicked')} label='Base button4' /> ));