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'; import withReadme from 'storybook-readme/with-readme'; import { withKnobs, boolean, text } from '@storybook/addon-knobs/react'; import Readme from './README.md'; const rowStyle = { marginTop: 8 }; storiesOf('Components|ModuleTile', module) // To set a default viewport for all the stories for this component .addParameters({ viewport: { defaultViewport: 'responsive' } }) .addDecorator(withKnobs) .addDecorator(withReadme(Readme)) .add('not-primary', () => ( ));