storybook/docs/snippets/common/component-story-disable-controls.js.mdx
2021-06-28 23:00:33 +01:00

18 lines
372 B
Plaintext

```js
// YourComponent.stories.js | YourComponent.stories.jsx | YourComponent.stories.ts | YourComponent.stories.tsx
import { YourComponent } from './your-component'
export default {
component: YourComponent,
title:'My Story',
argTypes:{
// foo is the property we want to remove from the UI
foo:{
table:{
disable:true
}
}
}
};
```