2016-04-28 17:50:03 -07:00
|
|
|
import {Component, Inject} from '@angular/core';
|
|
|
|
import {FORM_DIRECTIVES} from '@angular/common';
|
2016-04-28 21:57:16 -07:00
|
|
|
import {MyComp} from './a/multiple_components';
|
|
|
|
|
2016-04-30 16:13:03 -07:00
|
|
|
@Component({selector: 'basic', templateUrl: './basic.html', directives: [MyComp, FORM_DIRECTIVES]})
|
2016-04-28 21:57:16 -07:00
|
|
|
export class Basic {
|
|
|
|
ctxProp: string;
|
2016-04-30 16:13:03 -07:00
|
|
|
constructor() { this.ctxProp = 'initiaValue'; }
|
2016-04-28 21:57:16 -07:00
|
|
|
}
|