summaryrefslogtreecommitdiff
path: root/frontend/src/containers/gameBrowser.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/containers/gameBrowser.js')
-rw-r--r--frontend/src/containers/gameBrowser.js22
1 files changed, 11 insertions, 11 deletions
diff --git a/frontend/src/containers/gameBrowser.js b/frontend/src/containers/gameBrowser.js
index d9d3d363..643dbebc 100644
--- a/frontend/src/containers/gameBrowser.js
+++ b/frontend/src/containers/gameBrowser.js
@@ -1,11 +1,11 @@
-import React, { Component } from "react";
-import { connect } from "react-redux";
-import { Space, InlineForm, Text } from "rebass";
-import { Flex } from "reflexbox";
-import GameList from "../components/gameList";
+import React, { Component } from 'react';
+import { connect } from 'react-redux';
+import { Space, InlineForm, Text } from 'rebass';
+import { Flex } from 'reflexbox';
+import GameList from '../components/gameList';
-import { getCurrentPlayer } from "../redux/players";
-import { getAllGames, actions } from "../redux/games";
+import { getCurrentPlayer } from '../redux/players';
+import { getAllGames, actions } from '../redux/games';
class GameBrowser extends Component {
createGame = e => {
@@ -29,7 +29,7 @@ class GameBrowser extends Component {
<Space auto />
<Text>
<b>Username:</b>
- {" "}
+ {' '}
{this.props.currentPlayer && this.props.currentPlayer.displayName}
</Text>
<Space x={1} />
@@ -41,13 +41,13 @@ class GameBrowser extends Component {
}
const mapStateToProps = state => ({
- currentPlayer: getCurrentPlayer(state) || { displayName: "[ERROR]" },
- games: getAllGames(state)
+ currentPlayer: getCurrentPlayer(state) || { displayName: '[ERROR]' },
+ games: getAllGames(state),
});
const mapDispatchToProps = {
createGame: actions.requestCreateGame,
- joinGame: actions.requestJoinGame
+ joinGame: actions.requestJoinGame,
};
export default connect(mapStateToProps, mapDispatchToProps)(GameBrowser);
bgstack15