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.

overlays.native.ts 318B

123456789101112131415
  1. import { ReactElement } from 'react';
  2. // @ts-ignore
  3. import { PageReloadOverlay } from './components/native';
  4. /**
  5. * Returns the list of available platform specific overlays.
  6. *
  7. * @returns {Array<ReactElement>}
  8. */
  9. export function getOverlays(): Array<ReactElement> {
  10. return [
  11. PageReloadOverlay
  12. ];
  13. }