feat(host): role-gated Program.cs composes all v2 components

This commit is contained in:
Joseph Doherty
2026-05-26 05:22:59 -04:00
parent eb4280b7eb
commit e2b357f89a
6 changed files with 155 additions and 1 deletions
@@ -0,0 +1,12 @@
@using ZB.MOM.WW.OtOpcUa.AdminUI
<Router AppAssembly="@typeof(EndpointRouteBuilderExtensions).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Page not found.</p>
</LayoutView>
</NotFound>
</Router>