diff --git a/content/roadmaps/103-react/content/101-react-advanced-topics/103-render-props.md b/content/roadmaps/103-react/content/101-react-advanced-topics/103-render-props.md index 9157f94dc..7c1ac302f 100644 --- a/content/roadmaps/103-react/content/101-react-advanced-topics/103-render-props.md +++ b/content/roadmaps/103-react/content/101-react-advanced-topics/103-render-props.md @@ -1 +1,8 @@ -# Render props \ No newline at end of file +# Render Props + +The term “render prop” refers to a technique 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 own render logic. + +Free Content +Render Props in React