blob: d2c4e19e7f8be1fbefd81337aad0baeaaf1ae102 [file] [log] [blame]
import { Component, Optional } from '@angular/core';
import { MdDialogRef } from '@angular/material';
@Component({
selector: 'app-alert',
templateUrl: './alert.component.html',
styleUrls: ['./alert.component.css']
})
export class AlertComponent {
alertMessage = '';
constructor(@Optional() public dialogRef: MdDialogRef<AlertComponent>) { }
}