https://i.stack.imgur.com/toxDA.jpg
I am striving to replicate the layout demonstrated in the image below
So far, I have the following code snippet:
<Grid container justify=“space-between”>
<Grid container item>
<Grid item>
A
</Grid>
<Grid item>
B
</Grid>
</Grid>
<Grid item>
C
</Grid>
</Grid>
However, my output appears like this:
A B
C
Can anyone provide guidance on how to achieve the desired outcome?