diff --git a/path/to/ForwardedInput.tsx b/path/to/ForwardedInput.tsx new file mode 100644 index 0000000..05209ed --- /dev/null +++ b/path/to/ForwardedInput.tsx @@ -0,0 +1,11 @@ +import React, { forwardRef, Ref, InputHTMLAttributes } from 'react'; + +type ForwardedInputProps = InputHTMLAttributes; + +const ForwardedInput = forwardRef( + (props, ref: Ref) => { + return ; + } +); + +export default ForwardedInput; \ No newline at end of file