dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_ShieldModule cluster_ShieldModule_declarations cluster_ShieldModule_imports cluster_ShieldModule_providers LayoutComponent LayoutComponent ShieldModule ShieldModule LayoutComponent->ShieldModule ShieldComponent ShieldComponent ShieldComponent->ShieldModule BrandModule BrandModule BrandModule->ShieldModule DashboardModule DashboardModule DashboardModule->ShieldModule LandingModule LandingModule LandingModule->ShieldModule NavigationModule NavigationModule NavigationModule->ShieldModule SharedModule SharedModule SharedModule->ShieldModule ShieldRoutingModule ShieldRoutingModule ShieldRoutingModule->ShieldModule NavigationService NavigationService NavigationService->ShieldModule
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { SharedModule } from '../shared/shared.module';
import { LayoutComponent } from './layout/layout.component';
import { BrandModule } from '../admin';
import { NavigationModule } from '../component/navigation';
import { NavigationService } from './layout/navigation.service';

import { ShieldRoutingModule } from './shield-routing.module';
import { ShieldComponent } from './shield.component';

import { LandingModule } from './landing/landing.module';
import { DashboardModule } from './dashboard/dashboard.module';

@NgModule({
  imports: [
    CommonModule,
    SharedModule,
    BrandModule,
    NavigationModule,
    ShieldRoutingModule,
    LandingModule,
    DashboardModule
  ],
  declarations: [LayoutComponent, ShieldComponent],
  providers: [NavigationService]
})
export class ShieldModule {}

result-matching ""

    No results matching ""