Files
plane/web/ce/components/issues/worklog/activity/root.tsx
guru_sainath f1f7fa907a [WEB-1883] chore: moving issue activity store to respective folder (#5169)
* chore: issue activity store

* chore: updated issue activity store and handled workspace settings order

* chore: added paramenter on the issue worklog component

* chore: hanlded popover close from prop
2024-07-19 16:11:25 +05:30

15 lines
343 B
TypeScript

"use client";
import { FC } from "react";
import { TIssueActivityComment } from "@plane/types";
type TIssueActivityWorklog = {
workspaceSlug: string;
projectId: string;
issueId: string;
activityComment: TIssueActivityComment;
ends?: "top" | "bottom";
};
export const IssueActivityWorklog: FC<TIssueActivityWorklog> = () => <></>;