I am currently developing a project using semantic-ui-react that involves numerous input fields. To better organize the page, I have decided to split it into 3 columns. Below is the approach I have taken:
render() {
return (
<Form>
<Grid columns={3} divided>
<Grid.Row>
<Grid.Column stretched>
<Segment>
<Form.Group widths="equal">
<Field name="title" component={renderFieldInput} label="Enter Title"/>
<Field name="test" component={renderFieldInput} label="Enter Title"/>
</Form.Group>
</Segment>
</Grid.Column>
<Grid.Column stretched>
<Segment>
test2
</Segment>
</Grid.Column>
<Grid.Column stretched>
<Segment>
test3
</Segment>
</Grid.Column>
</Grid.Row>
</Grid>
</Form>
);
}
As shown in the layout:
https://i.sstatic.net/tY2qt.png
The issue arises when trying to place the form group inside the segment. Any assistance on how to resolve this would be greatly appreciated. Thank you.