mirror of
https://github.com/makeplane/plane.git
synced 2026-05-05 15:39:35 -05:00
9c10235fca
* * 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> = () => <></>;
|