Newer
Older
BlazorKafkaSignalR / save-points / 05-checkout-with-validation / BlazingPizza.Client / App.razor
@Derek Comartin Derek Comartin on 1 Jun 2021 363 bytes Init
<Router AppAssembly="typeof(Program).Assembly" Context="routeData">
    <Found>
        <RouteView RouteData="routeData" DefaultLayout="typeof(MainLayout)" />
    </Found>
    <NotFound>
        <LayoutView Layout="typeof(MainLayout)">
            <div class="main">Sorry, there's nothing at this address.</div>
        </LayoutView>
    </NotFound>
</Router>