mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
19 lines
317 B
Plaintext
19 lines
317 B
Plaintext
```md
|
|
<!-- YourComponent.stories.mdx -->
|
|
|
|
import { Meta } from '@storybook/addon-docs';
|
|
|
|
import { YourComponent } from './YourComponent';
|
|
|
|
<Meta
|
|
title="YourComponent"
|
|
component={YourComponent}
|
|
decorators={[
|
|
(Story) => (
|
|
<div style={{ margin: '3em' }}>
|
|
<Story />
|
|
</div>
|
|
),
|
|
]}
|
|
/>
|
|
``` |