DEV Community

Discussion on: Don't use React imports like this. Use Wrapper Pattern instead

Collapse
 
thraizz profile image
Info Comment hidden by post author - thread only visible in this permalink
Aron Schüler

This has nothing to do with wrapper files or components, its just comparing importing everything from a library with importing only what you really need.
E.g. you compare

import _ from 'lodash'
Enter fullscreen mode Exit fullscreen mode

with

import debounce from 'lodash/debounce';
import throttle from 'lodash/throttle'; 
Enter fullscreen mode Exit fullscreen mode

but wrongfully suggest that you need a new file to benefit from bundling - you don't. Just don't import the whole library when you need two functions.

Some comments have been hidden by the post's author - find out more