JSFiddle - React, Tailwind, and code Playground

HTML

<th>
    <input type="checkbox" id="selectAll">
</th>

JavaScript

$('input#selectAll').change(function(){

var temp = this.checked;
    
    $('input[type="checkbox"]').prop("checked",this.checked);

});