import React from 'react' import { storiesOf } from '@storybook/react' import withReadme from 'storybook-readme/with-readme' import Readme from './README.md' import { Container, Row, Col } from 'reactstrap'; import { GroupButton } from 'asc-web-components' const rowStyle = { marginTop: 8 }; storiesOf('Components|GroupButton', module) .addDecorator(withReadme(Readme)) .addParameters({ options: { showAddonPanel: false }}) .add('all', () => ( Active Hover Click*(Press) Disable Default Primary ));