JSFiddle - React, Tailwind, and code Playground

HTML

<div id="target"> </div>

JavaScript

var radioBtn = $('<input type="radio" name="rbtnCount" />');
for(i=0; i<20; i++){
	radioBtn.appendTo('#target');
}