mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
15 lines
193 B
Plaintext
15 lines
193 B
Plaintext
```js
|
|
// Button.stories.js|jsx
|
|
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
component: Button,
|
|
parameters: {
|
|
docs: {
|
|
controls: { exclude: ['style'] },
|
|
},
|
|
},
|
|
};
|
|
```
|