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

Jan Zickermann
committed
import { NavigationItemComponent } from './shared/navigation-item/navigation-item.component';
import { RouterModule } from '@angular/router';
import { ReactiveFormsModule } from '@angular/forms';
import { PostfachContainerComponent } from './postfach/postfach-container/postfach-container.component';
import { PostfachFormComponent } from './postfach/postfach-container/postfach-form/postfach-form.component';
import { TextFieldComponent } from './shared/text-field/text-field.component';
import { NavigationContainerComponent } from './navigation-container/navigation-container.component';
import { PostfachNavigationItemComponent } from './postfach/postfach-navigation-item/postfach-navigation-item.component';
declarations: [
PostfachContainerComponent,
PostfachFormComponent,
NavigationItemComponent,
TextFieldComponent,
NavigationContainerComponent,
PostfachNavigationItemComponent,
imports: [CommonModule, TechSharedModule, RouterModule, ReactiveFormsModule],
exports: [PostfachContainerComponent, NavigationItemComponent],

Jan Zickermann
committed
export class AdminSettingsModule {}