dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_ConfigModule cluster_ConfigModule_declarations cluster_ConfigModule_imports ConfigsComponent ConfigsComponent ConfigModule ConfigModule ConfigsComponent->ConfigModule ConfigsTableComponent ConfigsTableComponent ConfigsTableComponent->ConfigModule GlobalConfigsComponent GlobalConfigsComponent GlobalConfigsComponent->ConfigModule CoreModule CoreModule CoreModule->ConfigModule SharedModule SharedModule SharedModule->ConfigModule

File

src/app/config/config.module.ts

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { ConfigsComponent } from './containers/configs/configs.component';
import { GlobalConfigsComponent } from './containers/global-configs/global-configs.component';
import {RouterModule} from '@angular/router';
import {CoreModule} from '@app/core/core.module';
import {SharedModule} from '@app/shared/shared.module';
import { ConfigsTableComponent } from './containers/configs-table/configs-table.component';
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
import {MatIconModule} from '@angular/material';

@NgModule({
  declarations: [ConfigsComponent, GlobalConfigsComponent, ConfigsTableComponent],
  imports: [
    CommonModule,
    RouterModule,
    CoreModule,
    SharedModule,
    FormsModule,
    ReactiveFormsModule,
    MatIconModule
  ]
})
export class ConfigModule { }

result-matching ""

    No results matching ""