What are render props?
- A technique for passing functions as props to child components
- A technique for passing state as props to child components
- A technique for rendering components as props to child components
- A technique for rendering state as props to child components
Render props is a technique in React where a component exposes a function prop that returns another component or element. This allows the child component to use the parent's logic or state, and can be used to create reusable, composable components. For example: } />.
Loading...