6 lines
171 B
TypeScript
Raw Normal View History

import { bootstrap } from '@angular/platform-browser-dynamic';
import { AppComponent } from './app.component';
2016-04-27 11:28:22 -07:00
bootstrap(AppComponent).catch(err => console.error(err));