import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { MyModule } from './app.module';
platformBrowserDynamic().bootstrapModule( MyModule );
In this example, MyModule
is the module containing your root component. By bootstrapping MyModule
your Angular 2 app is ready to go.