diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2018-06-09 13:56:53 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2018-06-09 13:56:59 +0200 |
commit | 4c3c8f557a153552510f498d7d9755350982a7b2 (patch) | |
tree | 1bd75eac90edcab5d61804b2811d3993d8b36fa6 /frontend/src/scenes/Lobby/index.js | |
parent | Split GameBrowser into multiple connected components (diff) | |
download | seven-wonders-4c3c8f557a153552510f498d7d9755350982a7b2.tar.gz seven-wonders-4c3c8f557a153552510f498d7d9755350982a7b2.tar.bz2 seven-wonders-4c3c8f557a153552510f498d7d9755350982a7b2.zip |
Refactor PlayerList
Diffstat (limited to 'frontend/src/scenes/Lobby/index.js')
-rw-r--r-- | frontend/src/scenes/Lobby/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/scenes/Lobby/index.js b/frontend/src/scenes/Lobby/index.js index 0a427805..b0b9adac 100644 --- a/frontend/src/scenes/Lobby/index.js +++ b/frontend/src/scenes/Lobby/index.js @@ -3,7 +3,7 @@ import { Button } from '@blueprintjs/core'; import { List } from 'immutable'; import React, { Component } from 'react'; import { connect } from 'react-redux'; -import { PlayerList } from '../../components/playerList'; +import { PlayerList } from '../../components/PlayerList'; import type { Game } from '../../models/games'; import type { Player } from '../../models/players'; import { actions, getCurrentGame } from '../../redux/games'; |