{"id":10247,"date":"2026-09-01T09:10:05","date_gmt":"2026-09-01T08:10:05","guid":{"rendered":"https:\/\/solidt.eu\/site\/?p=10247"},"modified":"2026-09-01T09:10:07","modified_gmt":"2026-09-01T08:10:07","slug":"react-minimalist-spa-router","status":"publish","type":"post","link":"https:\/\/solidt.eu\/site\/react-minimalist-spa-router\/","title":{"rendered":"React minimalist SPA router"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/github.com\/molefrog\/wouter\">https:\/\/github.com\/molefrog\/wouter<\/a><\/p>\n\n\n\n<div style=\"height: 250px; position:relative; margin-bottom: 50px;\" class=\"wp-block-simple-code-block-ace\"><pre class=\"wp-block-simple-code-block-ace\" style=\"position:absolute;top:0;right:0;bottom:0;left:0\" data-mode=\"php\" data-theme=\"monokai\" data-fontsize=\"14\" data-lines=\"Infinity\" data-showlines=\"true\" data-copy=\"false\">npm i --save wouter<\/pre><\/div>\n\n\n\n<div style=\"height: 250px; position:relative; margin-bottom: 50px;\" class=\"wp-block-simple-code-block-ace\"><pre class=\"wp-block-simple-code-block-ace\" style=\"position:absolute;top:0;right:0;bottom:0;left:0\" data-mode=\"tsx\" data-theme=\"monokai\" data-fontsize=\"14\" data-lines=\"Infinity\" data-showlines=\"true\" data-copy=\"false\">import { Router, Switch, Route, Redirect } from \"wouter\";\nimport { useHashLocation } from \"wouter\/use-hash-location\";\nimport { BaseLayout } from \".\/layouts\/BaseLayout\";\nimport { ProtectedRoute } from \".\/layouts\/ProtectedRoute\";\nimport { DashboardPage } from \".\/pages\/DashboardPage\";\nimport { NotFoundPage } from \".\/pages\/NotFoundPage\";\nimport { MicrosoftRedirect } from \".\/components\/MicrosoftRedirect\";\nimport { LoginView } from \".\/pages\/login\/LoginView\";\n\nexport function Routes() {\n    const [location] = useHashLocation();\n\n    if (location.startsWith(\"\/code=\"))\n        return &lt;MicrosoftRedirect \/>;\n\n\n    return &lt;Router hook={useHashLocation}>\n        &lt;Switch>\n            {\/* Public routes *\/}\n            &lt;Route path=\"\/\" component={() => &lt;Redirect to=\"\/dashboard\" \/>} \/>\n            &lt;Route path=\"\/login\" component={LoginView} \/>\n\n            {\/* Protected routes *\/}\n            &lt;Route path=\"\/dashboard\">\n                &lt;BaseLayout>\n                    &lt;ProtectedRoute>\n                        &lt;DashboardPage \/>\n                    &lt;\/ProtectedRoute>\n                &lt;\/BaseLayout>\n            &lt;\/Route>\n\n            {\/* 404 *\/}\n            &lt;Route>\n                &lt;NotFoundPage \/>\n            &lt;\/Route>\n            &lt;\/Switch>\n    &lt;\/Router>;\n}\n\n\n\/\/ navigate:\nimport { navigate } from \"wouter\/use-hash-location\";\n\n\/\/ Link\nimport { Link } from \"wouter\";\n&lt;Link href=\"\/\">Home&lt;\/Link>\n\n<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>https:\/\/github.com\/molefrog\/wouter<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-10247","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/10247","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/comments?post=10247"}],"version-history":[{"count":1,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/10247\/revisions"}],"predecessor-version":[{"id":10248,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/10247\/revisions\/10248"}],"wp:attachment":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/media?parent=10247"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/categories?post=10247"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/tags?post=10247"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}