dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_UserInfoModule cluster_UserInfoModule_declarations cluster_UserInfoModule_imports cluster_UserInfoModule_exports UserInfoComponent UserInfoComponent UserInfoModule UserInfoModule UserInfoComponent->UserInfoModule UserInfoComponent UserInfoComponent UserInfoModule->UserInfoComponent LangPickerModule LangPickerModule LangPickerModule->UserInfoModule NavBarModule NavBarModule NavBarModule->UserInfoModule

File

projects/commons/src/lib/shared/modules/user-info/user-info.module.ts

import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';

import { UserInfoComponent } from './components';
import { NavBarModule, LangPickerModule } from '../../../elements';

@NgModule({
    imports: [
        RouterModule,

        NavBarModule,
        LangPickerModule,
    ],
    declarations: [
        UserInfoComponent,
    ],
    exports: [
        UserInfoComponent,
    ],
})

export class UserInfoModule {}

result-matching ""

    No results matching ""