import * as React from 'react';
import { render } from 'react-dom';
import { AppContainer } from 'react-hot-loader';
import App from './src/App';
const rootEl = document.getElementById('root');
render(
,
rootEl
);
// Hot Module Replacement API
declare let module: { hot: any };
if (module.hot) {
module.hot.accept('./src/App', () => {
const NewApp = require('./src/App').default;
render(
,
rootEl
);
});
}