Skip to content

Instantly share code, notes, and snippets.

@jjylik
Created August 29, 2021 11:09
Show Gist options
  • Save jjylik/c29fbe3876b2eca750ac282375c2baa9 to your computer and use it in GitHub Desktop.
Save jjylik/c29fbe3876b2eca750ac282375c2baa9 to your computer and use it in GitHub Desktop.
Slow react-hook-form render
// Fast TS compile
<Controller
control={control}
...>
</Controller>
// Slow TS compile
<Controller<MyInputs, 'myField'>
control={control}
...>
</Controller>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment