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 { MenuComponent } from './menu/menu.component';
|
7
|
import { EmployeesListComponent } from './employees-list/employees-list.component';
|
8
|
import { DashboardModule } from './dashboard/dashboard.module';
|
9
|
|
10
|
@NgModule({
|
11
|
declarations: [
|
12
|
AppComponent,
|
13
|
MenuComponent,
|
14
|
EmployeesListComponent
|
15
|
],
|
16
|
imports: [
|
17
|
BrowserModule,
|
18
|
AppRoutingModule,
|
19
|
DashboardModule
|
20
|
],
|
21
|
providers: [],
|
22
|
bootstrap: [AppComponent]
|
23
|
})
|
24
|
export class AppModule { }
|