I\'m just trying to run a simple index.html page in Angular2, but its showing me an error in zone.js in console:
Unhandled Promise rejec
You are missing the
import { BrowserModule } from '@angular/platform-browser';
Add to your app module
@NgModule({ imports: [ BrowserModule, ] ...})