According to Material-ui, bundle size might depend on the way we import stuff.
import { Button, TextField } from '@material-ui/core';
OR
// 🚀 Fast
import Button from '@material-ui/core/Button';
import TextField from '@material-ui/core/TextField';
This needs investigation and discussion.
According to Material-ui, bundle size might depend on the way we import stuff.
OR
This needs investigation and discussion.