App.razor 371 B

123456789101112
  1. <Router AppAssembly="@typeof(Program).Assembly">
  2. <Found Context="routeData">
  3. <RouteView RouteData="@routeData" DefaultLayout="@typeof(BasicLayout)" />
  4. </Found>
  5. <NotFound>
  6. <LayoutView Layout="@typeof(BasicLayout)">
  7. <p>Sorry, there's nothing at this address.</p>
  8. </LayoutView>
  9. </NotFound>
  10. </Router>
  11. <AntContainer />