feat: init
This commit is contained in:
1
apps/web/ce/components/estimates/inputs/index.ts
Normal file
1
apps/web/ce/components/estimates/inputs/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from "./time-input";
|
||||
8
apps/web/ce/components/estimates/inputs/time-input.tsx
Normal file
8
apps/web/ce/components/estimates/inputs/time-input.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import type { FC } from "react";
|
||||
|
||||
export type TEstimateTimeInputProps = {
|
||||
value?: number;
|
||||
handleEstimateInputValue: (value: string) => void;
|
||||
};
|
||||
|
||||
export const EstimateTimeInput: FC<TEstimateTimeInputProps> = () => <></>;
|
||||
Reference in New Issue
Block a user