diff --git a/webui/src/App.jsx b/webui/src/App.jsx
index 57c11f2..70f2300 100644
--- a/webui/src/App.jsx
+++ b/webui/src/App.jsx
@@ -2,6 +2,7 @@ import Home from "./pages/Home";
 import {useContext} from "react";
 import {StateContext} from "@/common/contexts/StateContext";
 import GameCreation from "@/pages/GameCreation";
+import Game from "@/pages/Game";
 
 const App = () => {
     const {currentState} = useContext(StateContext);
@@ -10,6 +11,7 @@ const App = () => {
         <>
             {currentState === "Home" && <Home />}
             {currentState === "GameCreation" && <GameCreation />}
+            {currentState === "Game" && <Game />}
         </>
     )
 }