I want to align my button to the right of the parent.
I was wondering if there is a proper way to do it in MUI. I could use:
<Grid container justify="flex-end">
But then I would have to use another <Grid item />. Seems too much of work.
Or maybe I am just better off using plain old CSS, messing around with float: right and dealing with the apparent zero height of the element.