Files
teamwallet/myteamwallet_frontend/src/app/shared/shared.module.ts
Bastian Wagner 6bea4f766a first commit
2026-07-31 21:02:47 +02:00

16 lines
431 B
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { UnderConstructionComponent } from './under-construction/under-construction.component';
import { DialogModule } from './dialog/dialog.module';
@NgModule({
declarations: [ UnderConstructionComponent ],
imports: [
CommonModule,
DialogModule
],
exports: [ UnderConstructionComponent ]
})
export class SharedModule { }