mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-07-18 09:10:46 +00:00
21 lines
471 B
TypeScript
21 lines
471 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { MatButtonModule, MatDialogModule } from '@angular/material';
|
|
|
|
import { FuseConfirmDialogComponent } from '@fuse/components/confirm-dialog/confirm-dialog.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
FuseConfirmDialogComponent
|
|
],
|
|
imports: [
|
|
MatDialogModule,
|
|
MatButtonModule
|
|
],
|
|
entryComponents: [
|
|
FuseConfirmDialogComponent
|
|
],
|
|
})
|
|
export class FuseConfirmDialogModule
|
|
{
|
|
}
|