mirror of
https://github.com/makeplane/plane.git
synced 2026-05-03 06:29:43 -05:00
482b363045
* chore: moved workspace settings to respective folders for ce and ee * chore: updated imports * chore: updated imports for ee * chore: resolved import error * chore: resolved import error * chore: ee imports in the issue sidebar * chore: updated file structure * chore: table UI * chore: resolved build errors * chore: added worklog on issue peekoverview
14 lines
316 B
TypeScript
14 lines
316 B
TypeScript
"use client";
|
|
|
|
import { FC } from "react";
|
|
import { TIssueActivityComment } from "@plane/types";
|
|
|
|
type TIssueActivityWorklog = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
issueId: string;
|
|
activityComment: TIssueActivityComment;
|
|
};
|
|
|
|
export const IssueActivityWorklog: FC<TIssueActivityWorklog> = () => <></>;
|