onChange 함수 실행했다가 reRender 너무 많다고 뜰 때 ?

 

handleVeryfyType('A') 라고 입력한 것을 () => handleVeryfyType('A') 로 변경

<input
	type="radio"
	name="select-list"
	id="phoneType"
	onChange={() => handleVerifyType('A')}
/>

 

 

+ Recent posts