JSFiddle - React, Tailwind, and code Playground

by Krishna Gopinath

HTML

<input type="checkbox" id="Check" />SelectAll
<br />
<input type="checkbox" />First
<br />
<input type="checkbox" />Second
<br />
<input type="checkbox" />Third
<br />
<input type="checkbox" />Fourth
<br />
<input type="checkbox" />Fifth</div>

JavaScript

$("#Check").change(function () {
    $("input:checkbox").prop("checked", this.checked);
});