mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
10 lines
142 B
Plaintext
10 lines
142 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
export const Large = Template.bind({});
|
|
|
|
Large.parameters = {
|
|
controls: { hideNoControlsWarning: true },
|
|
};
|
|
```
|