diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2018-06-08 20:49:20 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2018-06-09 12:49:52 +0200 |
commit | fdffc7e26ffc4af07aa8c0e5fc76e85901f1031b (patch) | |
tree | 1d881922e5ca6a9e688ad5b7aa27be9ded45472a /frontend/src/scenes/Lobby | |
parent | History entry about Livedoc (diff) | |
download | seven-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.js | 1 |
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> { |