Files
plane/apps/web/ce/components/estimates/inputs/time-input.tsx

9 lines
219 B
TypeScript
Raw Permalink Normal View History

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