I need to place a HTML Form inside a Table. My code is like below
render() {
return (
<form className="ui form">
<tbody>
<tr>
<td className="ui header">Name</td>
<td>
<input type="text" placeholder="Name"/>
</td>
</tr>
</tbody>
</form>
);
}
I am getting below error in console.
<tbody> cannot appear as a child of <form>