Added hook option for plugins to inject into the main layout before the router

This commit is contained in:
2026-02-20 12:28:22 +01:00
parent 9b9272cd6e
commit 5ad7a6db7b
5 changed files with 90 additions and 20 deletions

View File

@@ -0,0 +1,8 @@
using Microsoft.AspNetCore.Components;
namespace Moonlight.Frontend.Interfaces;
public abstract class LayoutMiddlewareBase : ComponentBase
{
[Parameter] public RenderFragment ChildContent { get; set; }
}