I've got template like
<table className='table'>
<tr></tr>
</table>
I've got such error

In debug session I have found that it happened because parent node of removed element is <table> , but child node of table is <tbody>.
My solution is to wrap <tr> in <tbody>. I think that many people don't wright <tbody> tag.
