JSFiddle - React, Tailwind, and code Playground

by Ramya Ranganathan

HTML

<table id="personalcontacts">
        <caption><h1>contacts</h1></caption>
        <thead>
            <tr>
                <th scope="col">Name</th>
                <th scope="row">Address</th>
                <th scope="row">Email</th>
            
            </tr>
        </thead>
        <tbody>
            <tr><td><input type='text' name='name'></td></tr>
                
<tr><td><input type='text' name='address'></td></tr> 
    <tr><td><input type='text' name='email'></td></tr>
            
        </tbody>
    </table>