| import { NgModule } from '@angular/core'; |
| import { BrowserModule } from '@angular/platform-browser'; |
| |
| import { AppRoutingModule } from './app-routing.module'; |
| import { AppComponent } from './app.component'; |
| import { HttpClientModule } from '@angular/common/http'; |
| import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; |
| |
| import {MatToolbarModule} from '@angular/material/toolbar'; |
| import { httpInterceptorProviders } from './interceptors/http/interceptor-provider'; |
| |
| //Sub-component imports |
| import { DisplayUserComponent } from './userdata/components/display-user/display-user.component'; |
| |
| @NgModule({ |
| declarations: [ |
| AppComponent, DisplayUserComponent |
| ], |
| imports: [ |
| BrowserModule, |
| AppRoutingModule, |
| HttpClientModule, |
| MatToolbarModule, |
| BrowserAnimationsModule |
| ], |
| providers: [httpInterceptorProviders], |
| bootstrap: [AppComponent] |
| }) |
| export class AppModule { } |