mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
12 lines
217 B
Plaintext
12 lines
217 B
Plaintext
```js
|
|
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
|
|
|
|
export const Large = Template.bind({});
|
|
Large.parameters = {
|
|
backgrounds: {
|
|
grid: {
|
|
disable: true,
|
|
}
|
|
}
|
|
};
|
|
``` |