storybook/docs/snippets/common/component-story-disable-controls.js.mdx
2020-10-26 18:16:54 +00:00

18 lines
289 B
Plaintext

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