mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 03:12:29 +00:00
16 lines
318 B
TypeScript
16 lines
318 B
TypeScript
import { ReactElement } from 'react';
|
|
|
|
// @ts-ignore
|
|
import { PageReloadOverlay } from './components/native';
|
|
|
|
/**
|
|
* Returns the list of available platform specific overlays.
|
|
*
|
|
* @returns {Array<ReactElement>}
|
|
*/
|
|
export function getOverlays(): Array<ReactElement> {
|
|
return [
|
|
PageReloadOverlay
|
|
];
|
|
}
|