mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 15:19:37 +01:00
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> = () => <></>;
|