From 27990fcba5a47252df617db1bc98e2276b326e7e Mon Sep 17 00:00:00 2001 From: jbion Date: Fri, 22 Feb 2019 23:09:40 +0100 Subject: Implement Game start --- frontend/src/components/lobby/Lobby.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'frontend/src/components/lobby/Lobby.jsx') diff --git a/frontend/src/components/lobby/Lobby.jsx b/frontend/src/components/lobby/Lobby.jsx index 82c00b20..df6557af 100644 --- a/frontend/src/components/lobby/Lobby.jsx +++ b/frontend/src/components/lobby/Lobby.jsx @@ -5,7 +5,8 @@ import React, { Component } from 'react'; import { connect } from 'react-redux'; import type { Game } from '../../models/games'; import type { Player } from '../../models/players'; -import { actions, getCurrentGame } from '../../redux/games'; +import { actions } from '../../redux/actions/lobby'; +import { getCurrentGame } from '../../redux/games'; import { getCurrentPlayer, getPlayers } from '../../redux/players'; import { RadialPlayerList } from './RadialPlayerList'; -- cgit