mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
18 lines
456 B
TypeScript
18 lines
456 B
TypeScript
import {Component} from "angular2/core";
|
|
@Component({
|
|
selector: 'page2-view',
|
|
template: `
|
|
<div class="container">
|
|
<div class="row">
|
|
<h1>Page 2</h1>
|
|
<input [(ngModel)]="username">
|
|
<span>Username: {{username}}</span>
|
|
<hello-world [who]="username"></hello-world>
|
|
</div>
|
|
</div>
|
|
`
|
|
})
|
|
export class Page2View {
|
|
username: string = 'Unicorn';
|
|
}
|