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

16 lines
269 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: ({ label, onClick }) => <Button label={label} onClick={onClick} />,
};
```