Spaces:
Runtime error
Runtime error
| 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; | |