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

index.js 363B

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