2019-01-03 17:14:25 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { render } from 'react-dom';
|
2020-10-26 02:32:04 +03:00
|
|
|
import App from './app';
|
2019-01-03 17:14:25 +03:00
|
|
|
|
2019-01-10 21:51:14 +03:00
|
|
|
render(<App />, document.getElementById('root'));
|
2019-01-03 17:14:25 +03:00
|
|
|
|
|
|
|
if (module.hot) {
|
|
|
|
// https://github.com/webpack/webpack/issues/418#issuecomment-53398056
|
2020-08-08 23:26:39 +03:00
|
|
|
module.hot.accept((err) => {
|
2019-01-10 20:23:33 +03:00
|
|
|
if (err) console.error(err.message); // eslint-disable-line no-console
|
2019-01-03 17:14:25 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
/*
|
|
|
|
module.hot.accept('./app', () => {
|
|
|
|
const NextApp = require('./app').default;
|
|
|
|
render(
|
|
|
|
<NextApp />,
|
|
|
|
document.getElementById('root')
|
|
|
|
);
|
|
|
|
});
|
|
|
|
*/
|
|
|
|
}
|