JSFiddle - React, Tailwind, and code Playground

HTML

<table class="userAccessTable">
        <thead>
            <tr>
                <th>User</th>
                <th>Has Access</th>
                <th>Permissions</th>
                <th>Action Requirements</th>
            </tr>
        </thead>
        <tbody>
                <tr>
                    <td>Chris Henry &lt;[email protected]&gt;</td>
                    <td>False</td>
                    <td>
                        <table>
                                <tbody><tr>
                                    <td class="AccessGranted">
                                        True
                                    </td>
                                    <td>
                                        <table>
                                            <thead>
                                                <tr>
                                                    <th>Permission</th>
                                                    <th>Granted</th>
                                                </tr>
                                            </thead>
                                                <tbody><tr>
                                                    <td>Sample_Review</td>
                                                    <td class="AccessDenied">False</td>
                                                </tr>
                                        </tbody></table>
                                    </td>
                               </tr>                               
                        </tbody></table>

                    </td>
                    <td>
                            <table>
                                <thead>
                                    <tr>
                                        <th>Access Type</th>
                                        <th>Granted</th>
                                        <th>Requirements</th>
                                    </tr>
                               ...