diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-06-05 03:25:53 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-06-05 03:25:53 +0200 |
commit | 51d820e22a4517dbb06d38a4f07f7c48522ef811 (patch) | |
tree | 4a7749cf77223dff2414fd4b73cb17df43d7449e /GitRepoViewer/App.razor | |
download | GitTools-51d820e22a4517dbb06d38a4f07f7c48522ef811.tar.xz |
Diffstat (limited to 'GitRepoViewer/App.razor')
-rw-r--r-- | GitRepoViewer/App.razor | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/GitRepoViewer/App.razor b/GitRepoViewer/App.razor new file mode 100644 index 0000000..c7730d1 --- /dev/null +++ b/GitRepoViewer/App.razor @@ -0,0 +1,12 @@ +<Router AppAssembly="@typeof(App).Assembly"> + <Found Context="routeData"> + <RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/> + <FocusOnNavigate RouteData="@routeData" Selector="h1"/> + </Found> + <NotFound> + <PageTitle>Not found</PageTitle> + <LayoutView Layout="@typeof(MainLayout)"> + <p role="alert">Sorry, there's nothing at this address.</p> + </LayoutView> + </NotFound> +</Router> \ No newline at end of file |