From 2d0ef885826a6cac87e44c9efc4f7c7d2b03939a Mon Sep 17 00:00:00 2001 From: lytrankieio123 Date: Tue, 24 Aug 2021 12:53:49 +0700 Subject: [PATCH] test commit hooks --- src/components/common/InputCommon/InputCommon.tsx | 1 + 1 file changed, 1 insertion(+) 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);