storybook/docs/snippets/common/button-story-hide-nocontrols-warning.js.mdx
2021-01-28 00:11:22 +00:00

10 lines
162 B
Plaintext

```js
// Button.stories.js | Button.stories.ts
export const Large = Template.bind({});
Large.parameters = {
controls: { hideNoControlsWarning: true },
};
```