summaryrefslogtreecommitdiff
path: root/frontend/src/containers/lobby.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/containers/lobby.js')
-rw-r--r--frontend/src/containers/lobby.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/frontend/src/containers/lobby.js b/frontend/src/containers/lobby.js
index fc762056..bf0cb031 100644
--- a/frontend/src/containers/lobby.js
+++ b/frontend/src/containers/lobby.js
@@ -1,11 +1,10 @@
-import React, { Component } from 'react';
import { List } from 'immutable';
+import React, { Component } from 'react';
import { connect } from 'react-redux';
import { Button } from 'rebass';
import PlayerList from '../components/playerList';
-
+import { actions, getCurrentGame } from '../redux/games';
import { getPlayers } from '../redux/players';
-import { getCurrentGame, actions } from '../redux/games';
class Lobby extends Component {
getTitle() {
bgstack15