summaryrefslogtreecommitdiff
path: root/frontend/src/containers/HomePage/actions.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/containers/HomePage/actions.js')
-rw-r--r--frontend/src/containers/HomePage/actions.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/frontend/src/containers/HomePage/actions.js b/frontend/src/containers/HomePage/actions.js
new file mode 100644
index 00000000..e06d6fa2
--- /dev/null
+++ b/frontend/src/containers/HomePage/actions.js
@@ -0,0 +1,6 @@
+export const ENTER_GAME = 'homePage/ENTER_GAME'
+
+export const enterGame = (username) => ({
+ type: ENTER_GAME,
+ username
+})
bgstack15