import React from "react"; import { useNavigate } from "react-router-dom"; function PollCard({ poll }) { const navigator = useNavigate(); const handleViewOnClick = () => { navigator(`/view/${poll._id}`); }; return (
{poll.description}