import React, { useRef } from 'react'; import { useParticipants } from '@dailyjs/shared/contexts/ParticipantsProvider'; import SpeakerTile from './SpeakerTile'; export const SpeakerView = () => { const { currentSpeaker } = useParticipants(); const activeRef = useRef(); return (
); }; export default SpeakerView;