Guest User

Untitled

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