storybook/docs/snippets/common/button-story-action-event-handle.js.mdx
2020-10-24 21:09:28 +08:00

13 lines
158 B
Plaintext

```js
// Button.stories.js
export default {
title: 'Button',
parameters: {
actions: {
handles: ['mouseover', 'click .btn'],
},
},
};
```