7 lines
151 B
TypeScript
7 lines
151 B
TypeScript
// #docregion
|
|
import { bootstrap } from 'angular2/platform/browser';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
bootstrap(AppComponent, []);
|