From c7f56456ec2914cb49bf08a855f6fdb16ade8586 Mon Sep 17 00:00:00 2001 From: Parnab Sanyal Date: Mon, 26 Aug 2019 02:53:00 +0530 Subject: [PATCH] Added Formik in the list of libraries, which use render props (#2287) --- 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 e1482f49..f680cb72 100644 --- a/content/docs/render-props.md +++ b/content/docs/render-props.md @@ -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/render-func) 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), [Downshift](https://github.com/paypal/downshift) and [Formik](https://github.com/jaredpalmer/formik). In this document, we’ll discuss why render props are useful, and how to write your own.