JSFiddle - React, Tailwind, and code Playground

HTML

<input type="checkbox" name="age" value="21-29" id="age">21-29
<input type="text" name="yourAge" value="" id="yourAge">

JavaScript

$("#age").click(function () {
    $("#yourAge").val($("#age").val());

});