Skip to content
Snippets Groups Projects
admin-settings.module.ts 337 B
Newer Older
  • Learn to ignore specific revisions
  • import { NgModule } from '@angular/core';
    import { CommonModule } from '@angular/common';
    import { PostfachModule } from './postfach/postfach.module';
    import { TechSharedModule } from '@alfa-client/tech-shared';
    
    @NgModule({
    
      imports: [CommonModule, TechSharedModule],
    
      exports: [PostfachModule],
    })
    export class AdminSettingsModule {}