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>
<Root
store={ store }
/>
/>
</AppContainer>,
document.getElementById('root')
);
if (module.hot) {
module.hot.accept('./containers/Root', () => {
const RootContainer = require('./containers/Root').default
const RootContainer = require('./containers/Root').default;
render(
<AppContainer>
<RootContainer

View File

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