mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
10bf7bc084
* chore(*): upgrade prettier * chore(*): upgrade prettier
23 lines
540 B
JavaScript
23 lines
540 B
JavaScript
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
import App from './src/app';
|
|
|
|
render(<App />, document.getElementById('root'));
|
|
|
|
if (module.hot) {
|
|
// https://github.com/webpack/webpack/issues/418#issuecomment-53398056
|
|
module.hot.accept((err) => {
|
|
if (err) console.error(err.message); // eslint-disable-line no-console
|
|
});
|
|
|
|
/*
|
|
module.hot.accept('./app', () => {
|
|
const NextApp = require('./app').default;
|
|
render(
|
|
<NextApp />,
|
|
document.getElementById('root')
|
|
);
|
|
});
|
|
*/
|
|
}
|