dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_AppModule cluster_AppModule_declarations cluster_AppModule_imports cluster_AppModule_bootstrap AppComponent AppComponent AppModule AppModule AppComponent->AppModule FooterComponent FooterComponent FooterComponent->AppModule HeaderComponent HeaderComponent HeaderComponent->AppModule DashboardComponent DashboardComponent DashboardComponent->AppModule EmployeeComponent EmployeeComponent EmployeeComponent->AppModule EmployeeDetailsComponent EmployeeDetailsComponent EmployeeDetailsComponent->AppModule MenulistComponent MenulistComponent MenulistComponent->AppModule MenuitemComponent MenuitemComponent MenuitemComponent->AppModule AppComponent AppComponent AppModule->AppComponent RouteModule RouteModule RouteModule->AppModule MaterialUIModule MaterialUIModule MaterialUIModule->AppModule
import { BrowserModule } from '@angular/platform-browser';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';
import { FooterComponent} from './Components/shared/footer/footer.component';
import { HeaderComponent } from './Components/shared/header/header.component';
import {MaterialUIModule} from './Modules/ControlModules/material-ui/material-ui.module';
import { DashboardComponent } from './Components/dashboard/dashboard.component';
import {RouteModule} from './Modules/route/route.module';
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
import { EmployeeComponent } from './components/employee/employee.component';
import { EmployeeDetailsComponent } from './components/employee-details/employee-details.component';
import { MenuitemComponent } from './components/shared/menuitem/menuitem.component';
import { MenulistComponent } from './components/shared/menulist/menulist.component';


@NgModule({
  declarations: [
    AppComponent,
    FooterComponent,
    HeaderComponent,
    DashboardComponent,
    EmployeeComponent,
    EmployeeDetailsComponent,
    MenulistComponent,
    MenuitemComponent,
  ],
  imports: [
    RouteModule,
    BrowserModule,
    BrowserAnimationsModule,
    MaterialUIModule,
    FormsModule, ReactiveFormsModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

results matching ""

    No results matching ""