mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-15 20:27:48 +00:00
11 lines
301 B
TypeScript
11 lines
301 B
TypeScript
|
|
/**
|
||
|
|
* Custom panel placeholder component.
|
||
|
|
* This file is overridden by jitsi-meet-branding at build time
|
||
|
|
* to provide the actual panel implementation with iframe content.
|
||
|
|
*
|
||
|
|
* @returns {null} This placeholder renders nothing.
|
||
|
|
*/
|
||
|
|
const CustomPanel = (): null => null;
|
||
|
|
|
||
|
|
export default CustomPanel;
|