From 62d1989f5fda01b5cf5cf8f62480b77605aa7759 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Wed, 31 Jan 2018 11:46:00 -0600 Subject: [PATCH] Link to some of the mentioned libraries --- react/create-react-app-comes-with-lodash.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/react/create-react-app-comes-with-lodash.md b/react/create-react-app-comes-with-lodash.md index 507714a..7174b6c 100644 --- a/react/create-react-app-comes-with-lodash.md +++ b/react/create-react-app-comes-with-lodash.md @@ -1,8 +1,9 @@ # create-react-app Comes With Lodash -Lodash is already a dependency of create-react-app. If you need one of those -fancy Lodash functions, there's no need to `yarn add lodash` to your -project, all you need is an import statement. +[Lodash](https://lodash.com/) is already a dependency of +[create-react-app](https://github.com/facebook/create-react-app). If you +need one of those fancy Lodash functions, there's no need to `yarn add +lodash` to your project, all you need is an import statement. ```javascript import chunk from 'lodash/chunk';