mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 23:41:11 +08:00
20 lines
287 B
Plaintext
20 lines
287 B
Plaintext
```js
|
|
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
|
|
|
|
import Button from './Button';
|
|
|
|
export default {
|
|
component: Button,
|
|
};
|
|
|
|
export const Large = {
|
|
parameters: {
|
|
backgrounds: {
|
|
grid: {
|
|
disable: true,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
```
|