"README.md" did not exist on "207e24ef9d413be2c1324896b70bdbce1fe103b9"
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 { OeidContainerComponent } from './oeid/oeid-container/oeid-container.component';
import { OeidFormComponent } from './oeid/oeid-container/oeid-form/oeid-form.component';
declarations: [
PostfachContainerComponent,
PostfachFormComponent,
NavigationItemComponent,
TextFieldComponent,
OeidContainerComponent,
OeidFormComponent,
imports: [CommonModule, TechSharedModule, RouterModule, ReactiveFormsModule],
exports: [PostfachContainerComponent, OeidContainerComponent, NavigationItemComponent],

Jan Zickermann
committed
export class AdminSettingsModule {}