Files
FrontOffice/src/FrontOffice.Main/App.razor
T
MeysamMoghaddam 45999329e7 u
2025-10-07 23:40:43 +03:30

14 lines
435 B
Plaintext

@using FrontOffice.Main.Utilities
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>