Integrated the SettingsArea into the GameCreation.jsx

This commit is contained in:
Mathias Wagner 2023-06-09 02:57:51 +02:00
parent 74acc0fc5e
commit c96fc903ff

View File

@ -3,6 +3,7 @@ import PageTitle from "@/common/components/PageTitle";
import InfoArea from "@/pages/GameCreation/components/InfoArea";
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
import {faPlay} from "@fortawesome/free-solid-svg-icons";
import SettingsArea from "@/pages/GameCreation/components/SettingsArea";
export const GameCreation = () => {
return (
@ -16,9 +17,7 @@ export const GameCreation = () => {
<div className="right-area">
<div className="glassy settings-area">
</div>
<SettingsArea />
<button className="glassy start-btn"><FontAwesomeIcon icon={faPlay} /> Starten</button>
</div>