mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-08-30 23:57:46 +00:00
17 lines
284 B
JavaScript
17 lines
284 B
JavaScript
|
|
// @flow
|
||
|
|
|
||
|
|
import {
|
||
|
|
PageReloadOverlay
|
||
|
|
} from './components/native';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Returns the list of available platform specific overlays.
|
||
|
|
*
|
||
|
|
* @returns {Array<React$Element>}
|
||
|
|
*/
|
||
|
|
export function getOverlays(): Array<React$Element<*>> {
|
||
|
|
return [
|
||
|
|
PageReloadOverlay
|
||
|
|
];
|
||
|
|
}
|