7 lines
165 B
TypeScript
Raw Normal View History

// #docregion
import { bootstrap } from '@angular/platform-browser-dynamic';
2016-06-13 00:41:33 +02:00
import { HelloWorldComponent } from './hello_world';
2016-06-13 00:41:33 +02:00
bootstrap(HelloWorldComponent);