mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
26 lines
528 B
Plaintext
26 lines
528 B
Plaintext
```ts
|
|
// YourPage.component.ts
|
|
|
|
import { Component, Input } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'document-screen',
|
|
template: `
|
|
<page-layout [user]="user">
|
|
<document-header [document]="document"></document-header>
|
|
<document-list [documents]="subdocuments"></document-list>
|
|
</page-layout>
|
|
`,
|
|
})
|
|
export default class DocumentScreen {
|
|
@Input()
|
|
user: any = { id: 0, name: 'Some User' };
|
|
|
|
@Input()
|
|
document: any = { id: 0, title: 'Some Title' };
|
|
|
|
@Input()
|
|
subdocuments: any = [];
|
|
}
|
|
|
|
``` |