MDX knobs example (#8771)

MDX knobs example
This commit is contained in:
Michael Shilman 2019-11-09 15:14:29 +08:00 committed by GitHub
commit b3d93715a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,7 @@ import {
ColorItem,
Meta,
} from '@storybook/addon-docs/blocks';
import { withKnobs, text } from '@storybook/addon-knobs';
import { action } from '@storybook/addon-actions';
import { Button } from '@storybook/react/demo';
import FlowTypeButton from '../../components/FlowTypeButton';
@ -16,7 +17,7 @@ import { DocgenButton } from '../../components/DocgenButton';
<Meta
title="Addons|Docs/mdx"
component={Button}
decorators={[storyFn => <div style={{ backgroundColor: 'yellow' }}>{storyFn()}</div>]}
decorators={[storyFn => <div style={{ backgroundColor: 'yellow' }}>{storyFn()}</div>, withKnobs]}
parameters={{ notes: 'component notes' }}
/>
@ -64,7 +65,7 @@ export const nonStory2 = () => <Button>Not a story</Button>; // another one
<Preview>
<Story name="hello story">
<Button onClick={action('clicked')}>hello world</Button>
<Button onClick={action('clicked')}>{text('caption', 'hello world')}</Button>
</Story>
<Story name="goodbye">
<Button onClick={action('clicked')}>goodbye world</Button>