Files
plane/web/ce/components/cycles/end-cycle/modal.tsx
2025-01-15 21:05:05 +05:30

14 lines
276 B
TypeScript

import React from "react";
interface Props {
isOpen: boolean;
handleClose: () => void;
cycleId: string;
projectId: string;
workspaceSlug: string;
transferrableIssuesCount: number;
cycleName: string;
}
export const EndCycleModal: React.FC<Props> = () => <></>;