storybook/docs/snippets/common/button-story-disable-addon.js.mdx
2021-09-03 23:31:04 +01:00

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
},
};
```