storybook/docs/snippets/web-components/button-story-click-handler-simplificated.js.mdx
2023-01-05 14:53:03 +00:00

16 lines
197 B
Plaintext

```js
// Button.stories.js
export default {
title: 'Button',
component: 'custom-button',
argTypes: {
onClick: { action: 'onClick' },
},
};
export const Text = {
args: {...},
};
```