diff --git a/src/components/common/InputCommon/InputCommon.tsx b/src/components/common/InputCommon/InputCommon.tsx index e0ca5ff95..3dc49129b 100644 --- a/src/components/common/InputCommon/InputCommon.tsx +++ b/src/components/common/InputCommon/InputCommon.tsx @@ -15,6 +15,7 @@ interface Props { onEnter?: (value: string | number) => void, } + const InputCommon = forwardRef(({ value, placeholder, type, onChange, onEnter }: Props, ref) => { const inputElementRef = useRef(null);