Added wouter for hash-based routing
This commit is contained in:
17
web/src/routes/RootRouter.tsx
Normal file
17
web/src/routes/RootRouter.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
/* Wouter */
|
||||
import { Router, Switch, Route } from "wouter";
|
||||
import { useHashLocation } from "wouter/use-hash-location";
|
||||
|
||||
/* Routes */
|
||||
import NotFound from "./NotFound";
|
||||
|
||||
const RootRouter = () => (
|
||||
<Router hook={useHashLocation}>
|
||||
<Switch>
|
||||
{/* Fallback (eg. 'Not Found / 404') */}
|
||||
<Route component={NotFound} />
|
||||
</Switch>
|
||||
</Router>
|
||||
);
|
||||
|
||||
export default RootRouter;
|
||||
Reference in New Issue
Block a user