mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
16 lines
339 B
Plaintext
16 lines
339 B
Plaintext
```md
|
||
<!-- Button.stories.mdx --->
|
||
|
||
import { Story } from '@storybook/addon-docs/blocks';
|
||
import { Button } from './Button';
|
||
|
||
<!--- This is your Story template function, shown here in React -->
|
||
|
||
export const Template = (args) => <Button {...args} />;
|
||
|
||
<Story name="Basic" args={{ label: ‘hello’ }}>
|
||
{Template.bind({})}
|
||
</Story>
|
||
|
||
```
|