Changeset 333cdac for Farmatiko/ClientApp/src/app/app.module.ts
- Timestamp:
- 07/21/20 22:00:35 (4 years ago)
- Branches:
- master
- Children:
- c352b2d
- Parents:
- 0c48bbb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko/ClientApp/src/app/app.module.ts
r0c48bbb r333cdac 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.