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