diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/components/GamemodeChooser.js | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -4,6 +4,8 @@ Minimalistic Tic Tac Toe game, written in React. For some reason, I've made the code as functional as I can make it +This game is hosted (here)[https://mikunonaka-tic-tac-toe.herokuapp.com/]. + ## Licence Licenced under the GNU General Public Licence diff --git a/src/components/GamemodeChooser.js b/src/components/GamemodeChooser.js index 6b2e985..15728d2 100644 --- a/src/components/GamemodeChooser.js +++ b/src/components/GamemodeChooser.js @@ -30,14 +30,14 @@ const GamemodeChooser = (props) => { props.setGameStarted(true); props.setMultiplayer(false); }}> - SINGLE PLAYER + LOCAL </div> <div className={"GamemodeButton"} onClick={() => { setShowMPMenu(true); props.setMultiplayer(true); }}> - MULTIPLAYER (beta) + ONLINE </div> </> } |