mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:51:25 +08:00
18 lines
372 B
Plaintext
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
|
|
}
|
|
}
|
|
}
|
|
};
|
|
``` |