"use client"; import PollOption from "./PollOption"; export default function PollActive({ pollManager, peerId }: any) { const poll = pollManager.poll; return (

{poll.question}

{poll.options.map((opt: any) => ( ))}
); }