Material UI - Box Breakpoints
This article will cover how to use breakpoints on the Box component
. . .
Quick and Easy
Box is a very useful component. You can add breakpoints to show / hide certain elements like this:
import Box from '@material-ui/core/Box';
<Box flexGrow={1} display={{ xs: 'none', sm: 'block' }}>
<Typography variant="h6">Material UI Workshop</Typography>
</Box>
So on small mobile screens out title will not show since it will take up too much space. However on small and above it will show as a block element.
Next Article
How to create an Account Menu in Material UIPrevious Article
Material UI - Custom Breakpoints