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';
declarations: [
PostfachContainerComponent,
PostfachFormComponent,
NavigationItemComponent,
TextFieldComponent,
],
imports: [CommonModule, TechSharedModule, RouterModule, ReactiveFormsModule],
exports: [PostfachContainerComponent, NavigationItemComponent],

Jan Zickermann
committed
export class AdminSettingsModule {}