I am struggling to align a React material-ui button to the right-most of the page and despite trying to use the justify="flex-end"
attribute within the following code, it doesn't seem to be working:
<Grid item justify="flex-end">
<Button
variant="contained"
color="primary"
onClick={() => myFunction()}
>
Submit
</Button>
</Grid>
I attempted using justify="flex-end"
, however, the alignment issue persists.