Can the getFieldDecorator of ant design's Form component bind two components with one id?

Screenshot is as follows

TimePicker TimePickerid

do you have any opinions?

Mar.04,2021

can only be used separately

<FormItem>
    <Row>
        <Col span={11}>{getFieldDecorator('MonStart', {})(<TimePicker />)}</Col>
        <Col span={2}> - </Col>
        <Col span={11}>{getFieldDecorator('MonEnd', {})(<TimePicker />)}</Col>
    </Row>
</FormItem>

after you get the value, do some processing

Menu