I\'m brand new to Angular 2 and attempting to follow along with a video tutorial I found. Despite following all of the steps, Angular just won\'t work; I get the following e
The problem is in your main.ts file.
const platform = platformBrowserDynamic();
platform.bootstrapModule(App);
You are trying to bootstrap App, which is not a real module.
Delete these two lines and replace with the following line:
platformBrowserDynamic().bootstrapModule(AppModule);
and it will fix your error.