12 lines
428 B
Plaintext
12 lines
428 B
Plaintext
|
@using Wave.Components.Account.Shared
|
||
|
<Router AppAssembly="@typeof(Program).Assembly">
|
||
|
<Found Context="routeData">
|
||
|
<AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(Layout.MainLayout)">
|
||
|
<NotAuthorized>
|
||
|
<RedirectToLogin />
|
||
|
</NotAuthorized>
|
||
|
</AuthorizeRouteView>
|
||
|
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
|
||
|
</Found>
|
||
|
</Router>
|