BLOG POSTS

Render Props vs State Hook
2018-12-05 ByIvan Velasquez
The term “render prop” refers to a technique used for sharing code between React components using a prop whose value is a function.
A component with a render prop takes a function that returns a React element and calls it instead of implementing its…