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 Material UI. I could use:
<Grid container justify="flex-end">
But then I would have to use another <Grid item />. Seems like too much 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.
