WintersBestWebForm/Components/Routes.razor

10 lines
391 B
Plaintext
Raw Normal View History

2025-09-18 12:54:02 -04:00
<!-- Wrap the router in a cascading app state -->
<IPAddressGrabber />
<CascadingAppState>
<Router AppAssembly="typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="routeData" DefaultLayout="typeof(Layout.MainLayout)" />
<FocusOnNavigate RouteData="routeData" Selector="h1" />
</Found>
</Router>
</CascadingAppState>