Skip to content

Commit

Permalink
Merge pull request #4 from keyko-io/fix/router
Browse files Browse the repository at this point in the history
router fix
  • Loading branch information
huseyincansoylu authored Jun 5, 2023
2 parents 7d5281a + e6b1d09 commit a476138
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/Router.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { createBrowserRouter } from "react-router-dom";
import { createHashRouter } from "react-router-dom";
import Root from "./Root";
import Blockchain from "./Blockchain";
import User from "./User";
import About from "./About";

export const router = createBrowserRouter([
export const router = createHashRouter([
{
path: "/",
element: <Root />,
Expand Down

0 comments on commit a476138

Please sign in to comment.