storybook/docs/snippets/angular/your-component-with-decorator.mdx.mdx
2021-11-09 01:41:54 +00:00

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>`)]}
/>
```