Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | import { Button } from '@mui/material';
import Grid from '@mui/material/Unstable_Grid2';
export default function MaterialGrid() {
return (
<Grid container spacing={2}>
<Grid xs={6}>
<Button variant="contained" fullWidth>1</Button>
</Grid>
<Grid xs={2}>
<Button variant="contained" fullWidth>2</Button>
</Grid>
<Grid xs={3}>
<Button variant="contained" fullWidth>3</Button>
</Grid>
<Grid xs={12}>
<Button variant="contained" fullWidth>4</Button>
</Grid>
</Grid>
);
}
// import { Button } from '@mui/material';
// import Grid from '@mui/material/Unstable_Grid2';
// export default function MaterialGrid() {
// return (
// <Grid container spacing={2}>
// <Grid xs={12} sm={9} md={6}>
// <Button variant="contained" fullWidth>1</Button>
// </Grid>
// <Grid xs={12} sm={3} md={2}>
// <Button variant="contained" fullWidth>2</Button>
// </Grid>
// <Grid xs={12} sm={4} md={3}>
// <Button variant="contained" fullWidth>3</Button>
// </Grid>
// <Grid xs={12}>
// <Button variant="contained" fullWidth>4</Button>
// </Grid>
// </Grid>
// );
// } |