storybook/docs/snippets/angular/your-component-with-decorator.mdx.mdx
2021-08-09 19:19:01 +01:00

15 lines
377 B
Plaintext

```md
<!-- your-component.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>`)]}
/>
```