Created the GameCreation.jsx

This commit is contained in:
Mathias Wagner 2023-06-09 02:22:56 +02:00
parent d101ce31d2
commit 583a3c1edc

View File

@ -0,0 +1,25 @@
import "./styles.sass";
import PageTitle from "@/common/components/PageTitle";
import InfoArea from "@/pages/GameCreation/components/InfoArea";
export const GameCreation = () => {
return (
<div className="game-wrapper">
<div className="title-area">
<PageTitle allowBack={true} />
</div>
<div className="creation-area">
<InfoArea />
<div className="settings-area">
</div>
</div>
</div>
)
}