'use client' import { useJoin } from 'agora-rtc-react'; import { useEffect, useState } from 'react'; import { MediaControl } from './view'; import { LocalUserPanel, RemoteUserPanel } from './components'; import { PublicUser } from '../../../types/sessions'; type AgoraProps = { sessionId: number; secret?: string; stopCalling: () => void; remoteUser?: PublicUser; }; export const Agora = ({ sessionId, secret, stopCalling, remoteUser }: AgoraProps) => { const [calling, setCalling] = useState(false); const [micOn, setMic] = useState(false); const [cameraOn, setCamera] = useState(false); useEffect(() => { setCalling(true); }, []); useJoin( { appid: process.env.NEXT_PUBLIC_AGORA_APPID, channel: `${sessionId}-${secret}`, token: null, }, calling, ); const stop = () => { stopCalling(); setCalling(false); }; return (