JSFiddle - React, Tailwind, and code Playground

HTML

<input type="checkbox" id="all">ALL
    <br>
    <input type="checkbox" class="group">One
        <br>
        <input type="checkbox" class="group">Two
            <br>
            <input type="checkbox" class="group">Three

JavaScript

$('#all').on('click', function(){
        $(':checkbox').attr("checked",$(this).is(':checked'));
  });