* chore: refactored work item quick actions * chore: update event handling for menu * chore: reverted unwanted changes * fix: update archive copy link * chore: handled undefined function implementation
11 lines
266 B
TypeScript
11 lines
266 B
TypeScript
import { FC } from "react";
|
|
|
|
type TDuplicateWorkItemModalProps = {
|
|
workItemId: string;
|
|
onClose: () => void;
|
|
isOpen: boolean;
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
};
|
|
|
|
export const DuplicateWorkItemModal: FC<TDuplicateWorkItemModalProps> = () => <></>;
|