JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://code.jquery.com/jquery-3.1.1.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">

	  <input type="radio" name="harga" value="Very Not Agree" />
	  <input type="radio" name="harga" value="Not Agree" />
	  <input type="radio" name="harga" value="Agree" />
	  <input type="radio" name="harga" value="Very Agree" />

JavaScript

var radios = $("input[type='radio']");
 radios.checkboxradio({
  label: "tests"
 });