Fixed ESLINT issues

This commit is contained in:
rajeshaz09 2016-07-11 10:39:32 +05:30
parent 5e32962e5e
commit 86fcb757bd
2 changed files with 3 additions and 3 deletions

View File

@ -10,14 +10,14 @@ render(
<AppContainer> <AppContainer>
<Root <Root
store={ store } store={ store }
/> />
</AppContainer>, </AppContainer>,
document.getElementById('root') document.getElementById('root')
); );
if (module.hot) { if (module.hot) {
module.hot.accept('./containers/Root', () => { module.hot.accept('./containers/Root', () => {
const RootContainer = require('./containers/Root').default const RootContainer = require('./containers/Root').default;
render( render(
<AppContainer> <AppContainer>
<RootContainer <RootContainer

View File

@ -18,7 +18,7 @@ render(
if (module.hot) { if (module.hot) {
module.hot.accept('./containers/Root', () => { module.hot.accept('./containers/Root', () => {
const RootContainer = require('./containers/Root').default const RootContainer = require('./containers/Root').default;
render( render(
<AppContainer> <AppContainer>
<RootContainer <RootContainer