Fix dev mode, turn off react concurrent mode, update dependencies

This commit is contained in:
Ken-Håvard Lieng 2018-11-29 11:54:05 +01:00
parent df71c54d37
commit 0438a099cf
76 changed files with 1466 additions and 689 deletions

View file

@ -1,12 +1,8 @@
import React from 'react';
import { Provider } from 'react-redux';
import { hot, setConfig } from 'react-hot-loader';
import { hot } from 'react-hot-loader';
import App from 'containers/App';
setConfig({
pureSFC: true
});
const Root = ({ store }) => (
<Provider store={store}>
<App />