dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_AppModule cluster_AppModule_declarations cluster_AppModule_imports cluster_AppModule_bootstrap AppComponent AppComponent AppModule AppModule AppComponent->AppModule AppComponent AppComponent AppModule->AppComponent AppRoutingModule AppRoutingModule AppRoutingModule->AppModule InitializerModule InitializerModule InitializerModule->AppModule SharedModule SharedModule SharedModule->AppModule

File

src/app/app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';
import { SharedModule } from './home/configuration/shared/module/shared.module';
import { AppRoutingModule } from './app-routing.module';
import { InitializerModule } from './home/configuration/core/module/initializer.module';

 

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    SharedModule,
    AppRoutingModule,
    InitializerModule,
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

result-matching ""

    No results matching ""