Spaces:
Runtime error
Runtime error
File size: 500 Bytes
de234b1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | import React from 'react';
import { Button, Grid } from '@mui/material';
const ButtonGrid = () => {
return (
<>
<Grid item xs={4}>
<Button variant="contained" fullWidth>Retrofit my Home</Button>
</Grid>
<Grid item xs={4}>
<Button variant="contained" fullWidth>General Query</Button>
</Grid>
<Grid item xs={4}>
<Button variant="contained" fullWidth>I want to be contacted</Button>
</Grid>
</>
);
};
export default ButtonGrid;
|