plane/web/components/estimates/estimate-disable.tsx
2024-05-23 15:37:25 +05:30

19 lines
369 B
TypeScript

import { FC } from "react";
import { observer } from "mobx-react";
type TEstimateDisable = {
workspaceSlug: string;
projectId: string;
};
export const EstimateDisable: FC<TEstimateDisable> = observer((props) => {
const { workspaceSlug, projectId } = props;
// hooks
return (
<div>
Estimate Disable {workspaceSlug} {projectId}
</div>
);
});