storybook/docs/snippets/react/button-story-click-handler-simple-docs.js.mdx
jonniebigodes a5623c57ea
Update docs/snippets/react/button-story-click-handler-simple-docs.js.mdx
Co-authored-by: Deen <deen@chromatic.com>
2021-08-31 18:49:28 +01:00

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