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