mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
35 lines
819 B
Plaintext
35 lines
819 B
Plaintext
```ts
|
|
// Page.stories.ts
|
|
|
|
import { Meta, moduleMetadata, Story } from '@storybook/angular';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { Button } from './button.component';
|
|
import { Header } from './header.component';
|
|
import { Page } from './page.component';
|
|
|
|
//👇 Imports all Header stories
|
|
import * as HeaderStories from './Header.stories';
|
|
|
|
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: 'Page',
|
|
component: Page,
|
|
decorators: [
|
|
moduleMetadata({
|
|
declarations: [Button, Header],
|
|
imports: [CommonModule],
|
|
}),
|
|
],
|
|
} as Meta;
|
|
|
|
export const LoggedIn: Story = {
|
|
args: {
|
|
...HeaderStories.LoggedIn.args,
|
|
},
|
|
};
|
|
``` |