storybook/docs/snippets/react/button-story-click-handler.js.mdx
2020-10-16 14:51:07 -07:00

14 lines
290 B
Plaintext

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