import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-dialog-custom', templateUrl: './dialog-custom.component.html', styleUrls: ['./dialog-custom.component.css'] }) export class DialogCustomComponent implements OnInit { constructor() { } ngOnInit() { } }