From 7072a011c69f3262cc5f652b2410d6575c413f22 Mon Sep 17 00:00:00 2001 From: Chafic Najjar Date: Mon, 26 Mar 2018 20:15:46 +0300 Subject: [PATCH] Remove redundant "instead" in render-props.html (#712) --- content/docs/render-props.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/render-props.md b/content/docs/render-props.md index 6c473f12..b307f901 100644 --- a/content/docs/render-props.md +++ b/content/docs/render-props.md @@ -209,7 +209,7 @@ class MouseTracker extends React.Component { } ``` -Now, instead of effectively cloning the `` component and hard-coding something else in its `render` method to solve for a specific use case, we instead provide a `render` prop that `` can use to dynamically determine what it renders. +Now, instead of effectively cloning the `` component and hard-coding something else in its `render` method to solve for a specific use case, we provide a `render` prop that `` can use to dynamically determine what it renders. More concretely, **a render prop is a function prop that a component uses to know what to render.**