2017-08-04 08:15:11 +00:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
|
|
|
|
import AlwaysOnTop from './AlwaysOnTop';
|
|
|
|
|
|
|
|
// Render the main/root Component.
|
|
|
|
ReactDOM.render(
|
|
|
|
<AlwaysOnTop />,
|
|
|
|
document.getElementById('react')
|
|
|
|
);
|
2017-12-18 22:35:56 +00:00
|
|
|
|
|
|
|
window.addEventListener('beforeunload', () => {
|
|
|
|
ReactDOM.unmountComponentAtNode(document.getElementById('react'));
|
|
|
|
});
|