14 lines
331 B
TypeScript
14 lines
331 B
TypeScript
import {Component, Input} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-error-box',
|
|
templateUrl: './error-box.component.html',
|
|
styleUrls: ['./error-box.component.css'],
|
|
})
|
|
export class ErrorBoxComponent {
|
|
@Input()
|
|
errorMessage: string | null = 'Error, please try again later.';
|
|
|
|
constructor() {}
|
|
}
|