storybook/docs/snippets/common/button-story-action-event-handle.js.mdx
2021-06-28 23:00:33 +01:00

12 lines
219 B
Plaintext

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