Update render-props.md (#1776)

Update React Router render func URL
This commit is contained in:
lsdsjy
2019-03-09 16:21:51 +08:00
committed by Nat Alison
parent b50fe64c1e
commit acb2fd4330

View File

@@ -14,7 +14,7 @@ A component with a render prop takes a function that returns a React element and
)}/>
```
Libraries that use render props include [React Router](https://reacttraining.com/react-router/web/api/Route/Route-render-methods) and [Downshift](https://github.com/paypal/downshift).
Libraries that use render props include [React Router](https://reacttraining.com/react-router/web/api/Route/render-func) and [Downshift](https://github.com/paypal/downshift).
In this document, well discuss why render props are useful, and how to write your own.