Skip to content

Instantly share code, notes, and snippets.

@irvingvjuarez
Created December 22, 2022 18:26
Show Gist options
  • Save irvingvjuarez/72ee31024db1757d876f399f5aa97bdc to your computer and use it in GitHub Desktop.
Save irvingvjuarez/72ee31024db1757d876f399f5aa97bdc to your computer and use it in GitHub Desktop.
How to type a forwardRef component in TS
export const Input = React.forwardRef<refType, propsType>((props, ref) => {
return (
<input ref={ref} />
)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment