BEFORE Material UI 5:
Try this
<Grid container justify="flex-end">
<Button>Example</Button>
</Grid>
UPDATE Material UI 5: (Thanks to Dipak)
The prop
justify
ofForwardRef(Grid)
is deprecated. UsejustifyContent
instead, the prop was renamed.
<Grid container justifyContent="flex-end">
<Button>Example</Button>
</Grid>