summaryrefslogtreecommitdiff
path: root/frontend/src/scenes/Lobby
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2018-06-08 20:49:20 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2018-06-09 12:49:52 +0200
commitfdffc7e26ffc4af07aa8c0e5fc76e85901f1031b (patch)
tree1d881922e5ca6a9e688ad5b7aa27be9ded45472a /frontend/src/scenes/Lobby
parentHistory entry about Livedoc (diff)
downloadseven-wonders-fdffc7e26ffc4af07aa8c0e5fc76e85901f1031b.tar.gz
seven-wonders-fdffc7e26ffc4af07aa8c0e5fc76e85901f1031b.tar.bz2
seven-wonders-fdffc7e26ffc4af07aa8c0e5fc76e85901f1031b.zip
Cleanup the mess
Diffstat (limited to 'frontend/src/scenes/Lobby')
-rw-r--r--frontend/src/scenes/Lobby/index.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/frontend/src/scenes/Lobby/index.js b/frontend/src/scenes/Lobby/index.js
index 88021fbe..ad39d09e 100644
--- a/frontend/src/scenes/Lobby/index.js
+++ b/frontend/src/scenes/Lobby/index.js
@@ -11,6 +11,7 @@ import { getPlayers } from '../../redux/players';
export type LobbyProps = {
currentGame: Game,
players: List<Player>,
+ startGame: () => void,
}
class LobbyPresenter extends Component<LobbyProps> {
bgstack15