mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:11:29 +08:00
28 lines
474 B
Plaintext
28 lines
474 B
Plaintext
```ts
|
|
// List.stories.ts
|
|
|
|
import { moduleMetadata } from '@storybook/angular';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { List } from './list.component';
|
|
|
|
export default {
|
|
component: List,
|
|
decorators: [
|
|
moduleMetadata({
|
|
declarations: [List],
|
|
imports: [CommonModule],
|
|
}),
|
|
],
|
|
};
|
|
|
|
// Always an empty list, not super interesting
|
|
export const Empty = {
|
|
render: (args) => ({
|
|
props: args,
|
|
template: '<list></list>',
|
|
}),
|
|
};
|
|
```
|