storybook/docs/snippets/common/component-story-disable-controls.js.mdx
2021-01-28 00:11:22 +00:00

18 lines
316 B
Plaintext

```js
// YourComponent.stories.js | YourComponent.stories.ts
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
}
}
}
};
```