storybook/docs/snippets/common/button-story-action-event-handle.js.mdx
2020-08-14 21:46:15 +01:00

12 lines
149 B
Plaintext

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