Answers for "two p in one line left and right in material ui"

0

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>
    );
}
Posted by: Guest on July-28-2021

Code answers related to "two p in one line left and right in material ui"

Browse Popular Code Answers by Language