Patrice Chalin 05864c2584 docs(dependency-injection): revised Dart and TS code and prose ()
docs(dependency-injection): revise Dart and TS code and prose
2016-06-03 11:16:46 -07:00

9 lines
292 B
TypeScript

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