···22import { render } from 'react-dom';
33import { AppContainer as ReactHotAppContainer } from 'react-hot-loader';
44import Root from './containers/Root';
55-import { configureStore, history } from './store/configureStore';
55+import { configuredStore, history } from './store';
66import './app.global.css';
7788-const store = configureStore();
88+const store = configuredStore();
991010const AppContainer = process.env.PLAIN_HMR ? Fragment : ReactHotAppContainer;
1111
···1818 * just pass information back and forth without doing much with it, with the
1919 * exception of the login/auth flow, which we expose as the init() method.
2020 */
2121-const WebSocket = require('ws');
2121+// const WebSocket = require('ws');
2222const EventEmitter = require('events');
23232424const CORTEX_URL = 'wss://localhost:6868';