mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00: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(() => <></>);
|