I am trying to implemented radio buttons in react. For each option of the radio button, it will have text input or dropdown as the input as well. I tried to use 'react-bootstrap/Form', however, it seems not allow me add input into the Form.check.
```<Form>
{['radio'].map((type) => (
<div key={`default-${type}`} className="mb-3">
<Form.Check type={type} id={`${type}-1`} label={`Within miles`} />
<Form.Check type={type} id={`${type}-2`} label={`Option`}>
<InputGroup className="mb-3">
<InputGroup.Text >Enter option</InputGroup.Text>
</InputGroup>
</ Form.Check >
</div>
))}
</Form>```
I am wondering how could I achieve the radio button with the text and dropdown input in react. The screenshot is the style I would like to achieve. Thanks.
