mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 13:05:08 +00:00
22 lines
476 B
TypeScript
22 lines
476 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
import { MdDialogRef } from '@angular/material';
|
||
|
|
||
|
@Component({
|
||
|
selector : 'fuse-confirm-dialog',
|
||
|
templateUrl: './confirm-dialog.component.html',
|
||
|
styleUrls : ['./confirm-dialog.component.scss']
|
||
|
})
|
||
|
export class FuseConfirmDialogComponent implements OnInit
|
||
|
{
|
||
|
public confirmMessage: string;
|
||
|
|
||
|
constructor(public dialogRef: MdDialogRef<FuseConfirmDialogComponent>)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
ngOnInit()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|