Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

2 недель назад
12345678910111213
  1. @using Panel.Shared
  2. <Router AppAssembly="@typeof(App).Assembly">
  3. <Found Context="routeData">
  4. <RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
  5. <FocusOnNavigate RouteData="@routeData" Selector="h1" />
  6. </Found>
  7. <NotFound>
  8. <PageTitle>Not found</PageTitle>
  9. <LayoutView Layout="@typeof(MainLayout)">
  10. <p role="alert">Sorry, there's nothing at this address.</p>
  11. </LayoutView>
  12. </NotFound>
  13. </Router>