Skip to content
Snippets Groups Projects
admin-settings.module.ts 562 B
Newer Older
  • Learn to ignore specific revisions
  • import { NgModule } from '@angular/core';
    import { CommonModule } from '@angular/common';
    import { PostfachModule } from './postfach/postfach.module';
    import { TechSharedModule } from '@alfa-client/tech-shared';
    
    import { NavigationItemComponent } from './shared/navigation-item/navigation-item.component';
    import { RouterModule } from '@angular/router';
    
      declarations: [NavigationItemComponent],
      imports: [CommonModule, TechSharedModule, RouterModule],
      exports: [PostfachModule, NavigationItemComponent],