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