1
|
import {NgModule} from '@angular/core';
|
2
|
import {BrowserModule} from '@angular/platform-browser';
|
3
|
|
4
|
import {AppRoutingModule} from './app-routing.module';
|
5
|
import {AppComponent} from './app.component';
|
6
|
import {NavBarModule} from './shared/nav-bar/nav-bar.module';
|
7
|
import {IndexModule} from './index/index.module';
|
8
|
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
|
9
|
import {HttpClientModule} from '@angular/common/http';
|
10
|
import {AuthModule} from './auth/auth.module';
|
11
|
|
12
|
@NgModule({
|
13
|
declarations: [
|
14
|
AppComponent
|
15
|
],
|
16
|
imports: [
|
17
|
BrowserModule,
|
18
|
BrowserAnimationsModule,
|
19
|
AppRoutingModule,
|
20
|
HttpClientModule,
|
21
|
NavBarModule,
|
22
|
IndexModule,
|
23
|
AuthModule
|
24
|
],
|
25
|
providers: [],
|
26
|
bootstrap: [AppComponent]
|
27
|
})
|
28
|
export class AppModule {
|
29
|
}
|