Projekt

Obecné

Profil

Stáhnout (1006 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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
import { HeaderComponent } from './header/header.component';
10
import { MatDialogModule } from '@angular/material';
11
import {ProfileSettingsModule} from './profile-settings/profile-settings.module';
12
import {HttpClientModule} from '@angular/common/http';
13

    
14
@NgModule({
15
  declarations: [
16
    AppComponent,
17
    MenuComponent,
18
    EmployeesListComponent,
19
    HeaderComponent
20
  ],
21
  imports: [
22
    BrowserModule,
23
    HttpClientModule,
24
    AppRoutingModule,
25
    DashboardModule,
26
    MatDialogModule,
27
    ProfileSettingsModule
28
  ],
29
  providers: [],
30
  bootstrap: [AppComponent]
31
})
32
export class AppModule { }
(5-5/6)