import { JitsiMeeting } from "@jitsi/react-sdk"; import { JITSI_DOMAIN } from "../../background/constants"; function JitsiEntrypoint() { return ( { // here you can attach custom event listeners to the Jitsi Meet External API // you can also store it locally to execute commands }} getIFrameRef={(iframeRef) => { iframeRef.style.height = "100%"; iframeRef.style.width = "100%"; }} /> ); } export default JitsiEntrypoint;