From reading the material-ui documentation and online examples, there seem to be different ways of importing the same item:
import TextField from 'material-ui/TextField';
// or
import TextField from '@material-ui/core/TextField';
// or
import { TextField } from '@material-ui/core';
What is the difference between the different way of doing an import?