Changeset ec6ac45 for Farmatiko/ClientApp/src/app/app.module.ts
- Timestamp:
- 07/21/20 22:36:54 (4 years ago)
- Branches:
- master
- Children:
- 1f041f6
- Parents:
- dba4ca9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko/ClientApp/src/app/app.module.ts
rdba4ca9 rec6ac45 10 10 import { CounterComponent } from './counter/counter.component'; 11 11 import { FetchDataComponent } from './fetch-data/fetch-data.component'; 12 import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; 13 import { KoronaComponent } from './korona/korona.component'; 12 14 13 15 @NgModule({ … … 17 19 HomeComponent, 18 20 CounterComponent, 19 FetchDataComponent 21 FetchDataComponent, 22 KoronaComponent 20 23 ], 21 24 imports: [ … … 25 28 RouterModule.forRoot([ 26 29 { path: '', component: HomeComponent, pathMatch: 'full' }, 27 { path: ' counter', component: CounterComponent },30 { path: 'mapa', component: CounterComponent }, 28 31 { path: 'fetch-data', component: FetchDataComponent }, 29 ]) 32 { path: 'koronavirus', component: KoronaComponent } 33 ]), 34 BrowserAnimationsModule 30 35 ], 31 36 providers: [],
Note:
See TracChangeset
for help on using the changeset viewer.