This component plays the video and audio tracks of a remote user and supports specifying the audio device to use. Specifying the video playback device is not supported.
import { RemoteUser, useRemoteUsers } from "agora-rtc-react";function App() { const remoteUsers = useRemoteUsers(); return ( <> {remoteUsers.map(user => ( <RemoteUser key={user.uid} user={user} /> ))} </> );} Copy
import { RemoteUser, useRemoteUsers } from "agora-rtc-react";function App() { const remoteUsers = useRemoteUsers(); return ( <> {remoteUsers.map(user => ( <RemoteUser key={user.uid} user={user} /> ))} </> );}
This component plays the video and audio tracks of a remote user and supports specifying the audio device to use. Specifying the video playback device is not supported.