summaryrefslogtreecommitdiff
path: root/frontend/src/scenes/Lobby/index.js
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2018-06-08 23:34:06 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2018-06-09 12:49:52 +0200
commit9298af15fdd228c51b1e5765c68c5062687ba96e (patch)
tree61329a8f0fc31cce85ea804e7c4667762287ddf9 /frontend/src/scenes/Lobby/index.js
parentCleanup the mess (diff)
downloadseven-wonders-9298af15fdd228c51b1e5765c68c5062687ba96e.tar.gz
seven-wonders-9298af15fdd228c51b1e5765c68c5062687ba96e.tar.bz2
seven-wonders-9298af15fdd228c51b1e5765c68c5062687ba96e.zip
Remove rebass dependency
Diffstat (limited to 'frontend/src/scenes/Lobby/index.js')
-rw-r--r--frontend/src/scenes/Lobby/index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/src/scenes/Lobby/index.js b/frontend/src/scenes/Lobby/index.js
index ad39d09e..0a427805 100644
--- a/frontend/src/scenes/Lobby/index.js
+++ b/frontend/src/scenes/Lobby/index.js
@@ -1,7 +1,8 @@
+//@flow
+import { Button } from '@blueprintjs/core';
import { List } from 'immutable';
import React, { Component } from 'react';
import { connect } from 'react-redux';
-import { Button } from 'rebass';
import { PlayerList } from '../../components/playerList';
import type { Game } from '../../models/games';
import type { Player } from '../../models/players';
bgstack15