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 { DropDown, DropDownItem } from 'asc-web-components' storiesOf('Components | DropDown | DropDownItem', module) .addDecorator(withReadme(Readme)) .add('base item', () => ( Only dropdown console.log('Button 1 clicked')} /> console.log('Button 2 clicked')} /> console.log('Button 3 clicked')} /> console.log('Button 4 clicked')} /> console.log('Button 5 clicked')} /> console.log('Button 6 clicked')} /> ) );