diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2018-04-29 21:30:56 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2018-04-29 21:51:35 +0200 |
commit | 8ea773d13c55560db412e43cedfeed134625db57 (patch) | |
tree | 6db0d81c9a9d52af086e8b83d4e40242f1b33241 /frontend/src/index.js | |
parent | Remove default exports everywhere (diff) | |
download | seven-wonders-8ea773d13c55560db412e43cedfeed134625db57.tar.gz seven-wonders-8ea773d13c55560db412e43cedfeed134625db57.tar.bz2 seven-wonders-8ea773d13c55560db412e43cedfeed134625db57.zip |
Organize imports
Diffstat (limited to 'frontend/src/index.js')
-rw-r--r-- | frontend/src/index.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/frontend/src/index.js b/frontend/src/index.js index f8841abc..1a7a0859 100644 --- a/frontend/src/index.js +++ b/frontend/src/index.js @@ -1,14 +1,13 @@ // @flow +import '@blueprintjs/core/dist/blueprint.css'; import 'babel-polyfill'; import React from 'react'; import ReactDOM from 'react-dom'; import { Provider } from 'react-redux'; import { ConnectedRouter } from 'react-router-redux'; import './global-styles.css'; -import '@blueprintjs/core/dist/blueprint.css'; - -import { configureStore } from './store'; import { Application } from './scenes'; +import { configureStore } from './store'; const initialState = {}; const { store, history } = configureStore(initialState); |