6 lines
216 B
TypeScript
6 lines
216 B
TypeScript
|
import {bootstrap} from 'angular2/platform/browser';
|
||
|
import {AppComponent} from './app.component';
|
||
|
import {HeroBirthday} from './hero-birthday1.component';
|
||
|
|
||
|
bootstrap(AppComponent);
|
||
|
bootstrap(HeroBirthday); // v.1
|