mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
18 lines
279 B
Plaintext
18 lines
279 B
Plaintext
```js
|
|
// MyComponent.stories.js|jsx
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
tags: ['autodocs'],
|
|
parameters: {
|
|
docs: {
|
|
toc: {
|
|
disable: true, // 👈 Disables the table of contents
|
|
},
|
|
},
|
|
},
|
|
};
|
|
```
|