2016-01-25 23:34:40 -08:00

9 lines
290 B
TypeScript

//#docregion
import {bootstrap} from 'angular2/platform/browser';
import {AppComponent} from './app.component';
import {ProvidersComponent} from './providers.component';
//#docregion bootstrap
bootstrap(AppComponent);
//#enddocregion bootstrap
bootstrap(ProvidersComponent);