1.  
  2. /* These are JavaScript import statements. Angular doesn’t know anything about these. */
  3. import { BrowserModule } from '@angular/platform-browser';
  4. import { NgModule } from '@angular/core';
  5. import { AppComponent } from './app.component';
  6. /* The @NgModule decorator lets Angular know that this is an NgModule. */
  7. @NgModule({
  8. declarations: [
  9. AppComponent
  10. ],
  11. imports: [ /* These are NgModule imports. */
  12. BrowserModule
  13. ],
  14. providers: [],
  15. bootstrap: [AppComponent]
  16. })
  17. export class AppModule { }
  18.