summaryrefslogtreecommitdiff
path: root/frontend/src/models
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/models
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/models')
-rw-r--r--frontend/src/models/games.js2
-rw-r--r--frontend/src/models/players.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/models/games.js b/frontend/src/models/games.js
index 36619760..dd660d45 100644
--- a/frontend/src/models/games.js
+++ b/frontend/src/models/games.js
@@ -1,4 +1,4 @@
-import { Record, Map, List } from 'immutable';
+import { List, Map, Record } from 'immutable';
export type SettingsShape = {
initialGold: number,
diff --git a/frontend/src/models/players.js b/frontend/src/models/players.js
index 13d5ad51..5f7a4d70 100644
--- a/frontend/src/models/players.js
+++ b/frontend/src/models/players.js
@@ -1,5 +1,5 @@
// @flow
-import { Record, Map } from 'immutable';
+import { Map, Record } from 'immutable';
export type PlayerShape = {
username: string,
bgstack15