#1 Data Analytics Program in India
₹2,499₹1,499Enroll Now
5 min read
Question 33 of 48hard

Render Props Pattern

Sharing code with render props.

What is Render Props?

A render prop is a function prop that a component uses to know what to render. It enables component logic reuse.

Pattern

Pass a function that returns React elements to a component.

Note: Custom hooks often replace this pattern now.