JSFiddle - React, Tailwind, and code Playground

by no2don

HTML

<table style="width:100%">
  <thead style='background-color:dimgray;color:white'>
    <tr>
    <td>姓名</td>
    <td>生日</td> 
    <td>年齡</td>
    <td>帳號</td>
    <td>密碼</td>
  </tr>
    </thead>
    <tbody>
  <tr>
     <td>Donma</td>
      <td>1983/06/21</td> 
    <td>x</td>
    <td>no2don</td>
    <td>1234</td>
  </tr>
                </tbody>
</table>

JavaScript

var userDatas=[
    {
        name:'Donma',
        birth:'1983/06/21',
        id:'no2don',
        pass:'1234'
    },
    {
        name:'Calvin',
        birth:'1975/1/1',
        id:'calvin',
        pass:'1234'
    },
    {
        name:'Shinban',
        birth:'1984/12/31',
        id:'shinban',
        pass:'1234'
    }


]