two p in one line left and right in material ui
export default function Home() {
return (
<Grid container justify={"space-between"}>
<Grid item>
<Typography>Left text</Typography>
</Grid>
<Grid item>
<Typography>Right text</Typography>
</Grid>
</Grid>
);
}