React Component
React Component
<body>
<div id="root"></div>
</body>
Create a variable that contains HTML code and display it in the "root" node:
• const myelement = (
<table>
<tr>
<th>Name</th>
</tr>
<tr>
<td>John</td>
</tr>
<tr>
<td>Elsa</td>
</tr>
</table>
);