import type { FC } from "react"; import { observer } from "mobx-react"; type Props = { cycleId: string; projectId: string; }; export const CycleAdditionalActions = observer(function CycleAdditionalActions(_props: Props) { return <>; });