Skip to content

Instantly share code, notes, and snippets.

View joelmandell's full-sized avatar
🏐
:)

Joel Mandell joelmandell

🏐
:)
View GitHub Profile
@joelmandell
joelmandell / App.razor
Created May 5, 2025 14:07 — forked from ClaytonHunt/App.razor
Dynamic Routing example in Blazor
<CascadingAuthenticationState>
<DynamicRouter AppAssembly="@typeof(Program).Assembly">
<Found>
<DynamicPage></DynamicPage>
</Found>
<NotFound>
Sorry no page
</NotFound>
</DynamicRouter>
</CascadingAuthenticationState>