import { FC } from "react"; import Link from "next/link"; import { History } from "lucide-react"; // packages import { Loader, Tooltip } from "@plane/ui"; // components import { ActivityIcon, ActivityMessage } from "components/core"; import { IssueCommentCard } from "./comment-card"; // helpers import { render24HourFormatTime, renderLongDateFormat, timeAgo } from "helpers/date-time.helper"; interface IssueActivityCard { workspaceSlug: string; projectId: string; issueId: string; user: any; issueComments: any; issueCommentUpdate: (comment: any) => void; issueCommentRemove: (commentId: string) => void; issueCommentReactionCreate: (commentId: string, reaction: string) => void; issueCommentReactionRemove: (commentId: string, reaction: string) => void; } export const IssueActivityCard: FC = (props) => { const { workspaceSlug, projectId, issueId, user, issueComments, issueCommentUpdate, issueCommentRemove, issueCommentReactionCreate, issueCommentReactionRemove, } = props; return (
); };