JSFiddle - React, Tailwind, and code Playground
HTML
<input type="radio" id="foo_radio_selection" value="" />Foo<br />
<input type="radio" id="bar_radio_selection" value="" />Bar<br />
JavaScript
function load_rights(product) {
document.getElementById(product+'_radio_selection').checked = true;
}
load_rights('bar');