videoflix/frontend/src/app/shared/components/error-toast/error-toast.component.ts
2024-08-07 22:32:45 +02:00

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 = '';
}