REACT ERROR <th> cannot appear as a child of <thead>. See (unknown) > thead > th REACT ERROR <th> cannot appear as a child of <thead>. See (unknown) > thead > th javascript javascript

REACT ERROR <th> cannot appear as a child of <thead>. See (unknown) > thead > th


Well th should be nested under a tr not a thead. Docs

<table>  <thead>    <tr>      <th>name</th>      <th>age</th>    </tr>  </thead>  <tbody>    <tr>      <td>john</td>      <td>33</td>    </tr>    <tr>      <td>smith</td>      <td>22</td>    </tr>    <tr>      <td>jane</td>      <td>24</td>    </tr>  </tbody></table>