diff --git a/webui/src/App.jsx b/webui/src/App.jsx
index 70f2300..6e31c4d 100644
--- a/webui/src/App.jsx
+++ b/webui/src/App.jsx
@@ -3,6 +3,7 @@ import {useContext} from "react";
import {StateContext} from "@/common/contexts/StateContext";
import GameCreation from "@/pages/GameCreation";
import Game from "@/pages/Game";
+import LegalArea from "@/common/components/LegalArea";
const App = () => {
const {currentState} = useContext(StateContext);
@@ -12,6 +13,8 @@ const App = () => {
{currentState === "Home" && }
{currentState === "GameCreation" && }
{currentState === "Game" && }
+
+
>
)
}