9 lines
411 B
Plaintext
9 lines
411 B
Plaintext
@using Shared.Pages
|
|
@using NotFound = Cloud.Components.Pages.NotFound
|
|
<Router AppAssembly="typeof(Program).Assembly" AdditionalAssemblies="new[] { typeof(Home).Assembly }"
|
|
NotFoundPage="typeof(NotFound)">
|
|
<Found Context="routeData">
|
|
<RouteView RouteData="routeData" DefaultLayout="typeof(MainLayout)"/>
|
|
<FocusOnNavigate RouteData="routeData" Selector="h1"/>
|
|
</Found>
|
|
</Router> |