ANSWERED.
EDIT: This was a silly mistake and I was trying out StackOverflow.
I have a private render method, to render a pair of label and input.
However, it is not rendering anything. I have tried out almost everything and cannot figure out the reason.
Here is the render method:
const _renderLabelInputPair = (labelValue = '', inputProps = {}) = {
<>
<label>{labelValue}</label>
<input {...inputProps} />
</>
}