You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 341B

1234567891011121314
  1. import React from 'react';
  2. import ReactDOM from 'react-dom';
  3. import AlwaysOnTop from './AlwaysOnTop';
  4. // Render the main/root Component.
  5. ReactDOM.render(
  6. <AlwaysOnTop />,
  7. document.getElementById('react')
  8. );
  9. window.addEventListener('beforeunload', () => {
  10. ReactDOM.unmountComponentAtNode(document.getElementById('react'));
  11. });