1 |
f8b9a3a2
|
hlavja
|
import {NgModule} from '@angular/core';
|
2 |
|
|
import {BrowserModule} from '@angular/platform-browser';
|
3 |
ee1670e3
|
hlavja
|
|
4 |
f8b9a3a2
|
hlavja
|
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 |
ee1670e3
|
hlavja
|
|
12 |
|
|
@NgModule({
|
13 |
|
|
declarations: [
|
14 |
|
|
AppComponent
|
15 |
|
|
],
|
16 |
|
|
imports: [
|
17 |
|
|
BrowserModule,
|
18 |
f8b9a3a2
|
hlavja
|
BrowserAnimationsModule,
|
19 |
|
|
AppRoutingModule,
|
20 |
|
|
HttpClientModule,
|
21 |
|
|
NavBarModule,
|
22 |
|
|
IndexModule,
|
23 |
|
|
AuthModule
|
24 |
ee1670e3
|
hlavja
|
],
|
25 |
|
|
providers: [],
|
26 |
|
|
bootstrap: [AppComponent]
|
27 |
|
|
})
|
28 |
f8b9a3a2
|
hlavja
|
export class AppModule {
|
29 |
|
|
}
|