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

14 lines
211 B
Plaintext

```js
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
import { Button } from './Button';
export default {
component: Button,
}
export const Text = {
args: {...},
};
```