mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 22:59:33 +01:00
14 lines
276 B
TypeScript
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> = () => <></>;
|