aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--src/components/GamemodeChooser.js4
2 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index c6da899..1aa0680 100644
--- a/README.md
+++ b/README.md
@@ -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>
</>
}