import { FC } from "react"; import { observer } from "mobx-react"; import { Tag } from "lucide-react"; // hooks import { useIssueDetail, useLabel } from "hooks/store"; // components import { IssueActivityBlockComponent, IssueLink } from "./"; type TIssueLabelActivity = { activityId: string; showIssue?: boolean; ends: "top" | "bottom" | undefined }; export const IssueLabelActivity: FC = observer((props) => { const { activityId, showIssue = true, ends } = props; // hooks const { activity: { getActivityById }, } = useIssueDetail(); const { projectLabels } = useLabel(); const activity = getActivityById(activityId); if (!activity) return <>; return ( ); });