"use client"; import { useState } from "react"; export default function PollCreation({ pollManager }: any) { const [question, setQuestion] = useState(""); const [options, setOptions] = useState(["", ""]); return (
setQuestion(e.target.value)} /> {options.map((opt, i) => ( { const newOpts = [...options]; newOpts[i] = e.target.value; setOptions(newOpts); }} /> ))}
); }