mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
19 lines
411 B
Plaintext
19 lines
411 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 = {
|
|
args: { label: 'Hello', onClick: action('clicked') },
|
|
render: ({ label, onClick }) => <Button label={label} onClick={onClick} />,
|
|
};
|
|
```
|