mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-20 00:31:37 +00:00
19 lines
456 B
TypeScript
19 lines
456 B
TypeScript
![]() |
import { CommonModule } from '@angular/common';
|
||
|
import { NgModule } from '@angular/core';
|
||
|
import { MatButtonModule } from '@angular/material/button';
|
||
|
import { TranslateModule } from '@ngx-translate/core';
|
||
|
|
||
|
import { WarnDialogComponent } from './warn-dialog.component';
|
||
|
|
||
|
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [WarnDialogComponent],
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
TranslateModule,
|
||
|
MatButtonModule,
|
||
|
],
|
||
|
})
|
||
|
export class WarnDialogModule { }
|