Changeset 785b8bd for Farmatiko/ClientApp/src/app/app.module.ts
- Timestamp:
- 07/24/20 03:17:26 (3 years ago)
- Branches:
- master
- Children:
- de2baac
- Parents:
- 37c8d1d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko/ClientApp/src/app/app.module.ts
r37c8d1d r785b8bd 4 4 import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http'; 5 5 import { RouterModule } from '@angular/router'; 6 import { MaterialModule } from './shared/material.module'; 7 import { ReactiveFormsModule } from '@angular/forms'; 6 8 7 9 import { AppComponent } from './app.component'; … … 12 14 import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; 13 15 import { KoronaComponent } from './korona/korona.component'; 16 import { AdminComponent } from './admin/admin.component'; 17 import { DashboardComponent } from './dashboard/dashboard.component'; 18 import { LoginComponent } from './login/login.component'; 14 19 15 20 @NgModule({ … … 20 25 CounterComponent, 21 26 FetchDataComponent, 22 KoronaComponent 27 KoronaComponent, 28 AdminComponent, 29 DashboardComponent, 30 LoginComponent 23 31 ], 24 32 imports: [ … … 30 38 { path: 'mapa', component: CounterComponent }, 31 39 { path: 'fetch-data', component: FetchDataComponent }, 32 { path: 'koronavirus', component: KoronaComponent } 40 { path: 'koronavirus', component: KoronaComponent }, 41 { path: 'admin', component: AdminComponent }, 42 { path: 'dashboard', component: DashboardComponent }, 43 { path: 'login', component: LoginComponent } 33 44 ]), 34 BrowserAnimationsModule 45 BrowserAnimationsModule, 46 MaterialModule, 47 ReactiveFormsModule 35 48 ], 36 49 providers: [],
Note:
See TracChangeset
for help on using the changeset viewer.