import React from 'react'; import { storiesOf } from '@storybook/react'; import withReadme from 'storybook-readme/with-readme'; import { RadioButtonGroup } from 'asc-web-components'; import Section from '../../../.storybook/decorators/section'; import {withKnobs} from '@storybook/addon-knobs/react'; import Readme from './README.md'; storiesOf('Components|Input', module) .addDecorator(withKnobs) .addDecorator(withReadme(Readme)) .add('radio-button-group', () => { console.log('radio box rendering') return (
<>
First list
Second list
); });