Problem Statement
What are render props in React?
Explanation
Render props is a technique for sharing logic using a prop whose value is a function. The function returns UI based on data passed to it.
Code Solution
SolutionRead Only
<DataProvider render={(data) => <List items={data} />} />;