mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
17 lines
524 B
Plaintext
17 lines
524 B
Plaintext
```ts
|
|
// YourComponent.stories.ts
|
|
|
|
import { componentWrapperDecorator, Meta } from '@storybook/angular';
|
|
|
|
import { YourComponent } from './your.component';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/7.0/angular/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'YourComponent',
|
|
component: YourComponent,
|
|
decorators: [componentWrapperDecorator((story) => `<div style="margin: 3em">${story}</div>`)],
|
|
} as Meta;
|
|
``` |