Code-sharing in React using Render Props (codeburst.io)Feb 09, 2019
Render Props is an increasingly popular method of sharing code between react components. They are called Render Props (or render-props) because they allow “sharing code” via a render prop. But for this exercise, we’ll do the same while sharing code with react’s own children prop for aesthetics.
Data Fetcher component using Hooks and Render Props (medium.com)Jan 11, 2019
In most cases, applications that I work with just need to request data from the API and display the result. So, using a sophisticated library like Redux, only complicates the code and increases the bundle size without bringing much of a benefit.
An Overview of Render Props in React (css-tricks.com)Nov 16, 2018
Using render props in React is a technique for efficiently re-using code. According to the React documentation, "a component with a render prop takes a function that returns a React element and calls it instead of implementing its own render logic."