storybook/docs/snippets/react/button-story-click-handler-args.js.mdx
2021-08-28 01:52:57 +01:00

19 lines
411 B
Plaintext

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