storybook/docs/snippets/common/button-story-action-event-handle.js.mdx
2021-09-03 23:31:04 +01:00

15 lines
258 B
Plaintext

```js
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
import { Button } from './Button';
export default {
component: Button,
parameters: {
actions: {
handles: ['mouseover', 'click .btn'],
},
},
};
```