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, DropDown, DropDownItem} from 'asc-web-components' const rowStyle = { marginTop: 8 }; storiesOf('Components| DropDown', module) .addDecorator(withReadme(Readme)) .add('base', () => ( Only dropdown With Button Without active button console.log('Button 1 clicked')} /> console.log('Button 2 clicked')} /> console.log('Button 3 clicked')} /> console.log('Button 4 clicked')} disabled={true} /> console.log('Button 5 clicked')} /> console.log('Button 6 clicked')} /> ) );