mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
15 lines
376 B
Plaintext
15 lines
376 B
Plaintext
```md
|
|
<!-- YourComponent.stories.mdx -->
|
|
|
|
import { Meta } from '@storybook/addon-docs';
|
|
|
|
import { componentWrapperDecorator } from '@storybook/angular';
|
|
|
|
import { YourComponent } from './your-component.component';
|
|
|
|
<Meta
|
|
title="YourComponent"
|
|
component={YourComponent}
|
|
decorators={[componentWrapperDecorator((story) => `<div style="margin: 3em">${story}</div>`)]}
|
|
/>
|
|
``` |