React implementation
created a customizable code input
Requested feedback
implementation, use of hooks, event handlings
Comments
This is good! One important thing here is that you should never call hooks inside a forEach https://react.dev/warnings/invalid-hook-call-warning I solved this by creating a useState of null refs, and then in a separate CodeInput that renders each individual input component, a useEffect updates the ref array in the parent when it is available.
You must be signed in to post a comment