Skip to content

Instantly share code, notes, and snippets.

@erasmo-marin
Last active March 29, 2017 06:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erasmo-marin/1b9e1d754d54b4a8789ea7ded3af58f8 to your computer and use it in GitHub Desktop.
Save erasmo-marin/1b9e1d754d54b4a8789ea7ded3af58f8 to your computer and use it in GitHub Desktop.
Optimizing the loading time for big react apps - example 1
//this is bad
import _ from "lodash";
import R from "ramda";
//pretty, but as bad as before
import { find } from "lodash";
import { compose } from "ramda";
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment