Fixed DOMContainer typo.
This commit is contained in:
@ -16,7 +16,7 @@ import sagas from './sagas';
|
|||||||
import render from '../common/app/utils/render';
|
import render from '../common/app/utils/render';
|
||||||
|
|
||||||
const log = debug('fcc:client');
|
const log = debug('fcc:client');
|
||||||
const DOMContianer = document.getElementById('fcc');
|
const DOMContainer = document.getElementById('fcc');
|
||||||
const initialState = window.__fcc__.data;
|
const initialState = window.__fcc__.data;
|
||||||
|
|
||||||
const serviceOptions = { xhrPath: '/services' };
|
const serviceOptions = { xhrPath: '/services' };
|
||||||
@ -61,7 +61,7 @@ app$({
|
|||||||
log('rendering');
|
log('rendering');
|
||||||
return render(
|
return render(
|
||||||
provideStore(React.createElement(Router, props), store),
|
provideStore(React.createElement(Router, props), store),
|
||||||
DOMContianer
|
DOMContainer
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
.subscribe(
|
.subscribe(
|
||||||
|
Reference in New Issue
Block a user