We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a6379e commit 79545bfCopy full SHA for 79545bf
client/index.js
@@ -10,12 +10,6 @@ import App from 'containers/App';
10
11
const history = createHistory();
12
13
-/* Images
14
- * This space is reserved for images that are required by server rendering,
15
- * e.g. the favicon and any other images that need to be in the base HTML file.
16
- */
17
-import '../common/images/favicon.png';
18
-
19
// The root element of your app
20
const rootElement = document.getElementById('app');
21
@@ -25,7 +19,7 @@ const initialState = window.__INITIAL_STATE__;
25
const store = configureStore(initialState, history);
26
27
const render = (Component) => {
28
- ReactDOM.render(
22
+ ReactDOM.hydrate(
29
23
<Provider store={store}>
30
24
<AppContainer>
31
<ConnectedRouter history={history}>
0 commit comments