summaryrefslogtreecommitdiff
path: root/frontend/src/containers/GameBrowser/actions.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/containers/GameBrowser/actions.js')
-rw-r--r--frontend/src/containers/GameBrowser/actions.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/frontend/src/containers/GameBrowser/actions.js b/frontend/src/containers/GameBrowser/actions.js
deleted file mode 100644
index 376973b4..00000000
--- a/frontend/src/containers/GameBrowser/actions.js
+++ /dev/null
@@ -1,16 +0,0 @@
-import { NEW_GAME, JOIN_GAME, CREATE_GAME } from './constants'
-
-export const newGame = (game) => ({
- type: NEW_GAME,
- game
-})
-
-export const joinGame = (id) => ({
- type: JOIN_GAME,
- id
-})
-
-export const createGame = (name) => ({
- type: CREATE_GAME,
- name
-})
bgstack15