Files
WatchIt/WatchIt.Website/Components/Panels/Common/ErrorPanel.razor.cs

12 lines
246 B
C#
Raw Normal View History

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