mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
16 lines
312 B
Plaintext
16 lines
312 B
Plaintext
```mdx
|
|
{/* ExampleDocumentation.mdx */}
|
|
|
|
import { Meta } from '@storybook/blocks';
|
|
|
|
import * as ExampleComponentStories from './ExampleComponent.stories';
|
|
|
|
{/* 👇 Documentation-only page */}
|
|
|
|
<Meta title="Documentation" />
|
|
|
|
{/* 👇 Component documentation page */}
|
|
|
|
<Meta of={ExampleComponentStories} />
|
|
```
|