mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:21:23 +08:00
16 lines
256 B
Plaintext
16 lines
256 B
Plaintext
```md
|
|
<!-- Button.stories.mdx -->
|
|
|
|
import { Meta } from '@storybook/addon-docs';
|
|
|
|
import { Button } from './Button';
|
|
|
|
<Meta
|
|
title="Button"
|
|
parameters={{
|
|
actions: {
|
|
handles: ['mouseover', 'click .btn'],
|
|
},
|
|
}}
|
|
component={Button}/>
|
|
``` |