import { Component, OnInit, Input } from '@angular/core'; // import { ShowcaseDialogComponent } from '../../modal-overlays/dialog/showcase-dialog/showcase-dialog.component'; import { NbDialogRef } from '@nebular/theme'; @Component({ selector: 'ngx-show-dialog', templateUrl: './show-dialog.component.html', styleUrls: ['./show-dialog.component.scss'], }) export class ShowDialogComponent implements OnInit { @Input() title: string; @Input() errorMsg: string; constructor(protected ref: NbDialogRef) { } ngOnInit() { } dismiss() { this.ref.close(); } }