From db64325831c4f9367da16f9d927577b9a94ee5be Mon Sep 17 00:00:00 2001 From: Antoine M Date: Tue, 13 Feb 2024 19:29:32 +0100 Subject: [PATCH] introducing test route --- src/App.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/App.js b/src/App.js index b0bfc25..f16b320 100644 --- a/src/App.js +++ b/src/App.js @@ -3,6 +3,7 @@ import Home from "./pages/Home.jsx"; import Single from "./pages/Single.jsx"; import Profile from "./pages/Profile.jsx"; import Results from "./pages/Results.jsx"; +import Test from "./pages/Test.jsx"; import Game from "./pages/Game.jsx"; @@ -29,6 +30,10 @@ const router = createBrowserRouter([ path: "/article/:id", element: , }, + { + path: "/test", + element: , + }, ]); function App() {