import React from 'react'; import { storiesOf } from '@storybook/react'; import { action } from '@storybook/addon-actions'; import { withKnobs, boolean, select, color, number} from '@storybook/addon-knobs/react'; import withReadme from 'storybook-readme/with-readme'; import Readme from './README.md'; import { Icons, IconButton } from 'asc-web-components'; import Section from '../../../.storybook/decorators/section'; storiesOf('Components|Buttons', module) .addDecorator(withKnobs) .addDecorator(withReadme(Readme)) .add('icon button', () => { const iconNames = Object.keys(Icons); return (
) });