* chore: cycles quick actions restructuring * chore: added additional actions to cycle list actions * chore: cycle quick action structure * chore: added additional actions to cycle list actions * chore: added end cycle hook * fix: updated end cycle export --------- Co-authored-by: gurusinath <gurusainath007@gmail.com>
12 lines
255 B
TypeScript
12 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> = () => <></>;
|