From 583a3c1edc3e7971ef6dd404672798ff30657866 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Fri, 9 Jun 2023 02:22:56 +0200 Subject: [PATCH] Created the GameCreation.jsx --- webui/src/pages/GameCreation/GameCreation.jsx | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 webui/src/pages/GameCreation/GameCreation.jsx diff --git a/webui/src/pages/GameCreation/GameCreation.jsx b/webui/src/pages/GameCreation/GameCreation.jsx new file mode 100644 index 0000000..45c7fbd --- /dev/null +++ b/webui/src/pages/GameCreation/GameCreation.jsx @@ -0,0 +1,25 @@ +import "./styles.sass"; +import PageTitle from "@/common/components/PageTitle"; +import InfoArea from "@/pages/GameCreation/components/InfoArea"; + +export const GameCreation = () => { + + return ( +
+ +
+ +
+ +
+ + +
+ +
+ +
+
+ ) + +} \ No newline at end of file