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

18 lines
347 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 = {
render: () => <Button label="Hello" onClick={action('clicked')} />,
};
```