test commit hooks

This commit is contained in:
lytrankieio123 2021-08-24 12:53:49 +07:00
parent 2eab1e12c7
commit 2d0ef88582

View File

@ -15,6 +15,7 @@ interface Props {
onEnter?: (value: string | number) => void, onEnter?: (value: string | number) => void,
} }
const InputCommon = forwardRef<Ref, Props>(({ value, placeholder, type, onChange, onEnter }: Props, ref) => { const InputCommon = forwardRef<Ref, Props>(({ value, placeholder, type, onChange, onEnter }: Props, ref) => {
const inputElementRef = useRef<HTMLInputElement>(null); const inputElementRef = useRef<HTMLInputElement>(null);