mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
* 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>
8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
type Props = {
|
|
cycleId: string;
|
|
projectId: string;
|
|
};
|
|
export const CycleAdditionalActions: FC<Props> = observer(() => <></>);
|