Guest User

Untitled

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