import React, { useState } from 'react'; const TestPoll = () => { const [selected, setSelected] = useState('opt-1'); const [submitted, setSubmitted] = useState(false); const options = [ { id: 'opt-1', label: 'Absolutely love it! π' }, { id: 'opt-2', label: 'Itβs pretty cool β' }, { id: 'opt-3', label: 'Needs more polish π§' }, { id: 'opt-4', label: 'Not my vibe π' }, ]; if (submitted) { return (
Your feedback has been recorded.