import React from "react"; // import Avatar from "@mui/material/Avatar"; export default function Comment({ comment }) { return (
{/* */}

{comment.name} {comment.text}

{comment.date}
); }