mirror of
https://github.com/makeplane/plane.git
synced 2026-04-27 03:21:45 -05:00
944b873184
* chore: move all services inside the apps folder * chore: rename apiserver to server
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> = () => <></>;
|