12 lines
296 B
TypeScript
12 lines
296 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-error-toast',
|
|
standalone: true,
|
|
imports: [],
|
|
templateUrl: './error-toast.component.html',
|
|
styleUrl: './error-toast.component.scss',
|
|
})
|
|
export class ErrorToastComponent {
|
|
@Input() errorText: string = '';
|
|
}
|