9 lines
290 B
TypeScript
Raw Normal View History

//#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);