Revize b2d221fc
Přidáno uživatelem Václav Jirák před téměř 6 roky(ů)
frontend/src/app/app.module.ts | ||
---|---|---|
3 | 3 |
|
4 | 4 |
import { AppRoutingModule } from './app-routing.module'; |
5 | 5 |
import { AppComponent } from './app.component'; |
6 |
import {HttpClientModule} from '@angular/common/http'; |
|
7 | 6 |
import { MenuComponent } from './menu/menu.component'; |
8 | 7 |
import { EmployeesListComponent } from './employees-list/employees-list.component'; |
9 |
import { DashboardComponent } from './dashboard/dashboard.component';
|
|
8 |
import { DashboardModule } from './dashboard/dashboard.module';
|
|
10 | 9 |
|
11 | 10 |
@NgModule({ |
12 | 11 |
declarations: [ |
13 | 12 |
AppComponent, |
14 | 13 |
MenuComponent, |
15 |
EmployeesListComponent, |
|
16 |
DashboardComponent |
|
14 |
EmployeesListComponent |
|
17 | 15 |
], |
18 | 16 |
imports: [ |
19 | 17 |
BrowserModule, |
20 | 18 |
AppRoutingModule, |
21 |
HttpClientModule
|
|
19 |
DashboardModule
|
|
22 | 20 |
], |
23 | 21 |
providers: [], |
24 | 22 |
bootstrap: [AppComponent] |
Také k dispozici: Unified diff
Re #7263 Basic employer's dashboard completed