mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-22 10:17:48 +00:00
12 lines
302 B
TypeScript
12 lines
302 B
TypeScript
|
|
/**
|
||
|
|
* Custom panel content placeholder component.
|
||
|
|
* This file is overridden by jitsi-meet-branding at build time
|
||
|
|
* to provide the actual panel content (e.g. iframe).
|
||
|
|
*
|
||
|
|
* @returns {null} This placeholder renders nothing.
|
||
|
|
*/
|
||
|
|
export default function CustomPanelContent(): null {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
|