This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
WebHax/WebHax/App.razor

10 lines
345 B
Plaintext

<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>