9 lines
224 B
TypeScript
9 lines
224 B
TypeScript
import type { FC } from "react";
|
|
|
|
export type TEstimateTimeInputProps = {
|
|
value?: number;
|
|
handleEstimateInputValue: (value: string) => void;
|
|
};
|
|
|
|
export const EstimateTimeInput: FC<TEstimateTimeInputProps> = () => <></>;
|