diff --git a/client-solid/src/Components/Comment.tsx b/client-solid/src/Components/Comment.tsx index 106170c..f108b08 100644 --- a/client-solid/src/Components/Comment.tsx +++ b/client-solid/src/Components/Comment.tsx @@ -1,6 +1,8 @@ import { JSXElement } from "solid-js"; +import { EngagementIcon } from "../Util/Icons"; import { PublicComment } from "../Util/api"; +import { NewCommentInputArea } from "./NewComment"; interface CommentProps { comment: PublicComment; @@ -14,11 +16,38 @@ interface CommentProps { */ export function Comment({ comment }: CommentProps): JSXElement { return ( -