Added the start button to the GameCreation.jsx

This commit is contained in:
Mathias Wagner 2023-06-09 02:34:58 +02:00
parent 1621a45e63
commit b7dfbf8a45

View File

@ -1,12 +1,12 @@
import "./styles.sass";
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";
export const GameCreation = () => {
return (
<div className="game-wrapper">
<div className="title-area">
<PageTitle allowBack={true} />
</div>
@ -14,10 +14,14 @@ export const GameCreation = () => {
<div className="creation-area">
<InfoArea />
<div className="settings-area">
<div className="right-area">
<div className="settings-area">
</div>
<button className="start-btn"><FontAwesomeIcon icon={faPlay} /> Starten</button>
</div>
</div>
</div>
)