SHARE
TWEET

Untitled

a guest Dec 5th, 2017 66 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import { BrowserModule } from '@angular/platform-browser';
  2. import { NgModule } from '@angular/core';
  3.  
  4. import { AppComponent } from './app.component';
  5. import { NavbarComponent } from './navbar/navbar.component';
  6. import { GalleryComponent } from './gallery/gallery.component';
  7. import { ImageDetailComponent } from './image-detail/image-detail.component';
  8. import { SortPipe } from './sort.pipe';
  9. import { BrowserAnimationsModule} from "@angular/platform-browser/animations";
  10.  
  11.  
  12. @NgModule({
  13.   declarations: [
  14.     AppComponent,
  15.     NavbarComponent,
  16.     GalleryComponent,
  17.     ImageDetailComponent,
  18.     SortPipe,
  19.     BrowserAnimationsModule
  20.   ],
  21.   imports: [
  22.     BrowserModule
  23.   ],
  24.   providers: [],
  25.   bootstrap: [AppComponent]
  26. })
  27. export class AppModule { }
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top