mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
13 lines
300 B
Plaintext
13 lines
300 B
Plaintext
```ts
|
|
// YourComponent.stories.ts
|
|
|
|
import { componentWrapperDecorator } from '@storybook/angular';
|
|
|
|
import { YourComponent } from './your.component';
|
|
|
|
export default {
|
|
component: YourComponent,
|
|
decorators: [componentWrapperDecorator((story) => `<div style="margin: 3em">${story}</div>`)],
|
|
};
|
|
```
|