Newer
Older
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { PostfachModule } from './postfach/postfach.module';
import { TechSharedModule } from '@alfa-client/tech-shared';

Jan Zickermann
committed
import { NavigationItemComponent } from './shared/navigation-item/navigation-item.component';
import { RouterModule } from '@angular/router';

Jan Zickermann
committed
declarations: [NavigationItemComponent],
imports: [CommonModule, TechSharedModule, RouterModule],
exports: [PostfachModule, NavigationItemComponent],

Jan Zickermann
committed
export class AdminSettingsModule {}