-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathExistingCustomerAddress.jsx
More file actions
38 lines (35 loc) · 947 Bytes
/
ExistingCustomerAddress.jsx
File metadata and controls
38 lines (35 loc) · 947 Bytes
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
import React from "react";
import { Typography } from "@material-ui/core";
import RadioGroup from "@mui/material/RadioGroup";
import FormControlLabel from "@mui/material/FormControlLabel";
import Radio from "@mui/material/Radio";
const ExistingCustomerAddress = () => {
return (
<div>
<Typography variant="h6" gutterBottom>
Address where our team is needed
</Typography>
<RadioGroup
style={{
display: "flex",
flexDirection: "column",
paddingLeft: "17px",
}}
name="use-radio-group"
defaultValue="first"
>
<FormControlLabel
value="first"
label="XXXX Monterey Blvd. "
control={<Radio />}
/>
<FormControlLabel
value="second"
label="XXXX Harry Byrd Hwy."
control={<Radio />}
/>
</RadioGroup>
</div>
);
};
export default ExistingCustomerAddress;