> For the complete documentation index, see [llms.txt](https://ploegert.gitbook.io/til/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ploegert.gitbook.io/til/programmy/react/create-react-app-comes-with-lodash.md).

# create-react-app Comes With Lodash

[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';
```

h/t Dillon Hafer
