mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 07:09:34 +01:00
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(() => <></>);
|