-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Amanda Martins edited this page Jul 20, 2024
·
4 revisions
This component expects a list of ErrorMessage
class ErrorMessage{
public readonly Title: string;
public readonly Content:string;
constructor(private _title:string, private _content: string) {
this.Title = _title;
this.Content = _content;
}