summaryrefslogtreecommitdiff
path: root/frontend/src/scenes/SplashScreen/index.js
diff options
context:
space:
mode:
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