mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 03:11:49 +08:00
16 lines
261 B
Plaintext
16 lines
261 B
Plaintext
```js
|
|
// Button.stories.js|jsx
|
|
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
component: Button,
|
|
};
|
|
|
|
export const Text = {
|
|
render: () => <Button label="Hello" onClick={action('clicked')} />,
|
|
};
|
|
```
|