1
|
import { BrowserModule } from '@angular/platform-browser';
|
2
|
import { NgModule } from '@angular/core';
|
3
|
|
4
|
import { AppRoutingModule } from './app-routing.module';
|
5
|
import { AppComponent } from './app.component';
|
6
|
import {HttpClientModule} from '@angular/common/http';
|
7
|
import { MenuComponent } from './menu/menu.component';
|
8
|
import { EmployeesListComponent } from './employees-list/employees-list.component';
|
9
|
import { DashboardComponent } from './dashboard/dashboard.component';
|
10
|
|
11
|
@NgModule({
|
12
|
declarations: [
|
13
|
AppComponent,
|
14
|
MenuComponent,
|
15
|
EmployeesListComponent,
|
16
|
DashboardComponent
|
17
|
],
|
18
|
imports: [
|
19
|
BrowserModule,
|
20
|
AppRoutingModule,
|
21
|
HttpClientModule
|
22
|
],
|
23
|
providers: [],
|
24
|
bootstrap: [AppComponent]
|
25
|
})
|
26
|
export class AppModule { }
|