dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_AccountPageModule cluster_AccountPageModule_declarations cluster_AccountPageModule_imports AccountPageComponent AccountPageComponent AccountPageModule AccountPageModule AccountPageComponent->AccountPageModule SharedModule SharedModule SharedModule->AccountPageModule

File

apps/demo/src/app/pages/account-page/account-page.module.ts

Declarations

Imports

import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { NavSidebarModule } from '@rucken/web';
import { NgxPermissionsModule } from 'ngx-permissions';
import { SharedModule } from '../../shared/shared.module';
import { AccountPageComponent } from './account-page.component';
import { ACCOUNT_PAGE_ROUTES } from './account-page.routes';

@NgModule({
  imports: [
    SharedModule,
    NgxPermissionsModule.forChild(),
    NavSidebarModule,
    RouterModule.forChild(ACCOUNT_PAGE_ROUTES)
  ],
  declarations: [AccountPageComponent]
})
export class AccountPageModule {}

result-matching ""

    No results matching ""