2020-07-08 10:00:15 +02:00
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { NgModule } from '@angular/core';
|
2022-01-10 11:12:57 +01:00
|
|
|
import { FormsModule } from '@angular/forms';
|
2020-07-08 10:00:15 +02:00
|
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
|
2022-01-10 11:12:57 +01:00
|
|
|
import { InputModule } from '../input/input.module';
|
2020-07-08 10:00:15 +02:00
|
|
|
import { WarnDialogComponent } from './warn-dialog.component';
|
|
|
|
|
|
|
|
@NgModule({
|
2022-01-10 11:12:57 +01:00
|
|
|
declarations: [WarnDialogComponent],
|
|
|
|
imports: [CommonModule, FormsModule, TranslateModule, MatButtonModule, InputModule],
|
2020-07-08 10:00:15 +02:00
|
|
|
})
|
2022-01-10 11:12:57 +01:00
|
|
|
export class WarnDialogModule {}
|