Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
82
0
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. import { BrowserAnimationsModule} from '@angular/platform-browser/animations'
  4. import  {ReactiveFormsModule } from '@angular/forms'
  5. import { RouterModule} from '@angular/router'
  6.  
  7. import { ROUTES } from './app.routes'
  8.  
  9. import { Auth } from './auth.service'
  10. import { AuthGuard } from './auth-guard.service'
  11. import { Bd } from  './bd.service'
  12.  
  13. import { PublicacoesComponent } from './home/publicacoes/publicacoes.component';
  14.  
  15.  
  16.  
  17. @NgModule({
  18.   declarations: [
  19.     AppComponent,
  20.     AcessoComponent,
  21.     BannerComponent,
  22.     LoginComponent,
  23.     CadastroComponent,
  24.     HomeComponent,
  25.     PublicacoesComponent,
  26.     IncluirPublicacaoComponent
  27.   ],
  28.   imports: [
  29.     BrowserModule,
  30.     BrowserAnimationsModule,
  31.     ReactiveFormsModule,
  32.     RouterModule.forRoot(ROUTES)
  33.   ],
  34.   providers: [ Auth, AuthGuard, Bd ],
  35.   bootstrap: [AppComponent]
  36. })
  37. export class AppModule { }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement