What is the difference between importing stuff from material-ui like this
import { Paper } from '@material-ui/core'
vs. like this, which works exactly the same way in my Webpack setup:
import Paper from '@material-ui/core/Paper'
Is any of these methods of importing, costly in terms of the resulting bundle size?
Note:
I am using this in a project that was bootstrapped with Create-React-App and the Create-Reac-App that I am using uses Webpack v3.5.1