How to clear the Radio, in ant when modal is turned off, clear the option for radio

how to clear the option of the talent moderator on the right when you click on save in this madal box, that is, to select radio and want to blur it?

clipboard.png

Apr.04,2021

<RadioGroup defaultValue=""> 

just leave defaultValue empty when saving


again, react is data-driven.
so the radio check is a value in the corresponding data, for example:

this.state = {obj: {role: ''}};

<Modal>
    <div>
        <radio value={this.state.obj.role}/>
    </div>
</Modal>

initialize the value every time you open it.

Menu