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