summaryrefslogtreecommitdiff
path: root/frontend/src/components/playerList.js
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2017-07-25 00:08:26 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2017-07-25 00:08:26 +0200
commitcf67eff86ef9a027c3247463d13b340644a0bb8c (patch)
tree5f4faa42ccb8308bbefe6fe55eea74294be053a8 /frontend/src/components/playerList.js
parentImprove sevenWondersApi and types (diff)
downloadseven-wonders-cf67eff86ef9a027c3247463d13b340644a0bb8c.tar.gz
seven-wonders-cf67eff86ef9a027c3247463d13b340644a0bb8c.tar.bz2
seven-wonders-cf67eff86ef9a027c3247463d13b340644a0bb8c.zip
Organize imports and format JS files
Diffstat (limited to 'frontend/src/components/playerList.js')
-rw-r--r--frontend/src/components/playerList.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/playerList.js b/frontend/src/components/playerList.js
index bc2c768e..4ddbe056 100644
--- a/frontend/src/components/playerList.js
+++ b/frontend/src/components/playerList.js
@@ -1,6 +1,6 @@
import React from 'react';
-import { Flex } from 'reflexbox';
import { Text } from 'rebass';
+import { Flex } from 'reflexbox';
const PlayerList = ({ players }) => (
<div>
bgstack15