8 lines
202 B
TypeScript
8 lines
202 B
TypeScript
import type { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
type Props = {
|
|
cycleId: string;
|
|
projectId: string;
|
|
};
|
|
export const CycleAdditionalActions: FC<Props> = observer(() => <></>);
|