mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
19 lines
369 B
TypeScript
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>
|
|
);
|
|
});
|