LANCommander/LANCommander.Launcher/UI/App.Main.razor
2026-01-16 22:43:10 -06:00

10 lines
No EOL
333 B
Text

<div class="main-window">
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainWindow)" />
</Found>
<NotFound>
<RedirectToRoute Route="/Authenticate" />
</NotFound>
</Router>
</div>