import React, { useState } from "react"; export const SurveyComment = () => { const [comment, setComment] = useState(""); const handleChange = () => {}; return (
); };