mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 15:19:37 +01:00
15 lines
327 B
TypeScript
15 lines
327 B
TypeScript
"use client";
|
|
|
|
import { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
|
|
type TUpdateEstimateModal = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
estimateId: string | undefined;
|
|
isOpen: boolean;
|
|
handleClose: () => void;
|
|
};
|
|
|
|
export const UpdateEstimateModal: FC<TUpdateEstimateModal> = observer(() => <></>);
|