選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. });