storybook/docs/snippets/common/button-story-hide-nocontrols-warning.js.mdx
2021-09-03 23:31:04 +01:00

16 lines
266 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: {
controls: { hideNoControlsWarning: true },
},
};
```