Skip to content
Snippets Groups Projects
admin-settings.module.ts 973 B
Newer Older
  • Learn to ignore specific revisions
  • import { NgModule } from '@angular/core';
    import { CommonModule } from '@angular/common';
    import { TechSharedModule } from '@alfa-client/tech-shared';
    
    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],