storybook/docs/snippets/common/button-story-hide-nocontrols-warning.js.mdx
2021-05-06 21:05:56 +01:00

9 lines
161 B
Plaintext

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