From 03ce8a19c4b8f964bff119be002f5f6067052d43 Mon Sep 17 00:00:00 2001 From: Muhammad Izza Alfiansyah Date: Sat, 20 Apr 2024 08:14:30 +0700 Subject: [PATCH] change to hash router --- website/src/Router.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/src/Router.tsx b/website/src/Router.tsx index 7f7e09d..ed1e0b5 100644 --- a/website/src/Router.tsx +++ b/website/src/Router.tsx @@ -1,4 +1,4 @@ -import { Route, Router } from "@solidjs/router"; +import { HashRouter, Route } from "@solidjs/router"; import Index from "./pages/Index"; import Pengujian from "./pages/Pengujian"; import Histori from "./pages/Histori"; @@ -10,11 +10,11 @@ interface Props { export default function (props: Props) { return ( - + - + ); }