mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
12 lines
246 B
Plaintext
12 lines
246 B
Plaintext
```js
|
|
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
|
|
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
component: Button,
|
|
parameters: {
|
|
myAddon: { disable: true }, // Disables the addon
|
|
},
|
|
};
|
|
``` |