import React from 'react'; import { storiesOf } from '@storybook/react'; import { action } from '@storybook/addon-actions'; import { Container, Row, Col } from 'reactstrap'; import { ModuleTile } from 'asc-web-components'; const rowStyle = { marginTop: 8 }; storiesOf('Components|ModuleTile', module) // To set a default viewport for all the stories for this component .addParameters({ viewport: { defaultViewport: 'responsive' } }) .addParameters({ options: { showAddonPanel: false }}) .add('all', () => ( ));