summaryrefslogtreecommitdiff
path: root/frontend/src/scenes/SplashScreen/index.js
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2018-04-29 21:30:56 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2018-04-29 21:51:35 +0200
commit8ea773d13c55560db412e43cedfeed134625db57 (patch)
tree6db0d81c9a9d52af086e8b83d4e40242f1b33241 /frontend/src/scenes/SplashScreen/index.js
parentRemove default exports everywhere (diff)
downloadseven-wonders-8ea773d13c55560db412e43cedfeed134625db57.tar.gz
seven-wonders-8ea773d13c55560db412e43cedfeed134625db57.tar.bz2
seven-wonders-8ea773d13c55560db412e43cedfeed134625db57.zip
Organize imports
Diffstat (limited to 'frontend/src/scenes/SplashScreen/index.js')
-rw-r--r--frontend/src/scenes/SplashScreen/index.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/src/scenes/SplashScreen/index.js b/frontend/src/scenes/SplashScreen/index.js
index dca8bc49..022caf45 100644
--- a/frontend/src/scenes/SplashScreen/index.js
+++ b/frontend/src/scenes/SplashScreen/index.js
@@ -1,10 +1,9 @@
// @flow
+import { Button, Classes, InputGroup, Intent } from '@blueprintjs/core';
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { Container } from 'rebass';
import { actions } from '../../redux/players';
-
-import { InputGroup, Button, Classes, Intent } from '@blueprintjs/core';
import { HomeLayout } from './components/HomeLayout';
class SplashScreenPresenter extends Component {
bgstack15