import React from 'react' import { render } from 'react-snapshot' import App from './App' import 'normalize.css' const rootEl = document.getElementById('root') render(, rootEl) if (module.hot) { module.hot.accept('./App', () => { const NextApp = require('./App').default render(, rootEl) }) }