fbredius/storybook

View on GitHub
docs/snippets/angular/storybook-preview-global-decorator.ts.mdx

Summary

Maintainability
Test Coverage
```js
// .storybook/preview.js

import { componentWrapperDecorator } from '@storybook/angular';

export const decorators = [
  componentWrapperDecorator((story) => `<div style="margin: 3em">${story}</div>`),
];
```