summaryrefslogtreecommitdiff
path: root/frontend/src/components/gameList.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/gameList.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/gameList.js')
-rw-r--r--frontend/src/components/gameList.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/frontend/src/components/gameList.js b/frontend/src/components/gameList.js
index 22366c5c..0a478b96 100644
--- a/frontend/src/components/gameList.js
+++ b/frontend/src/components/gameList.js
@@ -1,9 +1,8 @@
// @flow
+import type { List } from 'immutable';
import React from 'react';
+import { Button, Space, Text } from 'rebass';
import { Flex } from 'reflexbox';
-import { Text, Space, Button } from 'rebass';
-
-import type { List } from 'immutable';
import type { Game } from '../models/games';
const GameList = ({ games, joinGame }: { games: List<Game>, joinGame: (gameId: string) => void }) => (
bgstack15