mirror of
https://github.com/makeplane/plane.git
synced 2026-07-11 13:00:11 +02:00
* * chore: refactored estimates components. * chore: added translations for estimates components. * fix: translation key update
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
import { FC } from "react";
|
|
|
|
export type TEstimateTimeInputProps = {
|
|
value?: number;
|
|
handleEstimateInputValue: (value: string) => void;
|
|
};
|
|
|
|
export const EstimateTimeInput: FC<TEstimateTimeInputProps> = () => <></>;
|