Home > other >  How to best type a TypeScript collection of React wrappers
How to best type a TypeScript collection of React wrappers

Time:10-12

in my team's application, we have run into a few cases where it would be nice to be able to dynamically compose component wrappers (HOCs) without having to know all the wrapper interfaces ahead of time (mostly for swapping out context providers when large portions of our component tree are rendered from different host containers).

I'm able to write a simple implementation for this, but getting optimal type safety has been... challenging

  • Related