diff --git a/memory-game/mg-frontend/src/App.jsx b/memory-game/mg-frontend/src/App.jsx index ee88b9a..54ab779 100644 --- a/memory-game/mg-frontend/src/App.jsx +++ b/memory-game/mg-frontend/src/App.jsx @@ -2,20 +2,26 @@ import { useState } from "react"; import "./App.css"; import Button from "./components/button"; import GameBoard from "./components/gameboard"; +import GameMessages from "./components/gameMessages"; import Scoreboard from "./components/scoreboard"; function App() { const [gameStarted, setGameStarted] = useState(false); + const [buttonText, setButtonText] = useState("Start Game!"); const [score, setScore] = useState(0); const [highScore, setHighScore] = useState(0); + const [message, setMessage] = useState("Remember the important things!"); return ( <> {!gameStarted ? ( -