"

Compartmentalizing Data Flow with React HOCs with TypeScript and Recompose

6 years ago

An Inconvenient Truth: Prop Drilling We've all worked on a React app where a component will take in multiple props only to pass them through to another component, which passes them through to another one, so on so forth. This is called Prop Drilling. We're going through each component as...