2024-09-22 23:11:21 +02:00
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
|
|
2025-03-03 00:56:32 +01:00
|
|
|
namespace WatchIt.Website.Components.Panels.Common;
|
2024-09-22 23:11:21 +02:00
|
|
|
|
2025-03-03 00:56:32 +01:00
|
|
|
public partial class ErrorPanel : Component
|
2024-09-22 23:11:21 +02:00
|
|
|
{
|
|
|
|
|
#region PARAMETERS
|
|
|
|
|
|
|
|
|
|
[Parameter] public string? ErrorMessage { get; set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|