mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
16 lines
293 B
Plaintext
16 lines
293 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:{
|
|
control:false
|
|
}
|
|
}
|
|
};
|
|
``` |