UNPKG

mean-guide-frontend

Version:

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.1.

10 lines (8 loc) 274 B
import { Component, Inject } from '@angular/core'; import { MAT_DIALOG_DATA } from '@angular/material/dialog'; @Component({ templateUrl: './error.component.html', }) export class ErrorComponent { constructor(@Inject(MAT_DIALOG_DATA) public data: {message: string}){} }