storybook/docs/snippets/react/button-story-click-handler.js.mdx
2023-05-25 21:44:48 +01:00

16 lines
261 B
Plaintext

```js
// Button.stories.js|jsx
import { action } from '@storybook/addon-actions';
import { Button } from './Button';
export default {
component: Button,
};
export const Text = {
render: () => <Button label="Hello" onClick={action('clicked')} />,
};
```