mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 23:29:37 +01:00
13 lines
255 B
TypeScript
13 lines
255 B
TypeScript
|
|
import React from "react";
|
||
|
|
|
||
|
|
interface Props {
|
||
|
|
isOpen: boolean;
|
||
|
|
handleClose: () => void;
|
||
|
|
cycleId: string;
|
||
|
|
projectId: string;
|
||
|
|
workspaceSlug: string;
|
||
|
|
transferrableIssuesCount: number;
|
||
|
|
}
|
||
|
|
|
||
|
|
export const EndCycleModal: React.FC<Props> = () => <></>;
|