This commit is contained in:
skeris 2025-02-24 20:32:19 +03:00
parent 0c13ccf313
commit ad3929dd9f

@ -5,14 +5,14 @@ import { StrictMode, lazy } from "react";
const routes: RouteObject[] = [
{
path: "/",
path: "/en/",
children: [
{
index: true,
element: <App />,
},
{
path: ":quizId",
path: "/en/:quizId",
element: <App />,
},
],