* [WEB-5473] fix: source map errors * [WEB-5473] chore: run codemod * fix: build errors in editor --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
import type { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
|
|
type TUpdateEstimateModal = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
estimateId: string | undefined;
|
|
isOpen: boolean;
|
|
handleClose: () => void;
|
|
};
|
|
|
|
export const UpdateEstimateModal = observer(function UpdateEstimateModal(_props: TUpdateEstimateModal) {
|
|
return <></>;
|
|
});
|