Guest User

Untitled

a guest
May 27th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. import { BrowserModule } from '@angular/platform-browser';
  2. import { NgModule } from '@angular/core';
  3.  
  4. import { AppComponent } from './app.component';
  5. import { HomeComponent } from './home/home.component';
  6.  
  7. @NgModule({
  8. declarations: [
  9. AppComponent,
  10. HomeComponent
  11. ],
  12. imports: [
  13. BrowserModule
  14. ],
  15. providers: [],
  16. bootstrap: [AppComponent]
  17. })
  18. export class AppModule { }
Add Comment
Please, Sign In to add comment