import { JSXElement } from "solid-js"; import { ReplyIcon } from "../Util/Icons"; import { EngagementIcon } from "../Util/Icons"; import { PublicComment } from "../Util/api"; /** * Comment is a component that displays a single comment. * @param {Object} props The properties for the Comment component. * @param {string} props.postId The id of the post that the comment is a reply to. * @returns {JSXElement} A JSXElement of a comment */ export function Comment({ comment }: { comment: PublicComment }): JSXElement { return (
{comment.created_at}
{comment.content}
{/* Placeholder icon, tbd */}
); }