JSFiddle - React, Tailwind, and code Playground

by shriek

HTML

<table>
    <thead>
        <tr><th>First name</th><th>Last name</th></tr>
    </thead>
    <tbody data-bind="foreach: people">
        <tr>
            <td data-bind="text: $data"></td>
        </tr>
    </tbody>
</table>

JavaScript

ko.applyBindings({
        people: ["HP xw9400 Workstation"," Genuine Windows XP Professional 32-bit"," AMD Opteron Model 2214 2.20 GHz 1 GHz AMD HyperTransport bus 1 MB"," 2 GB (667 MHz) DDR2 SDRAM"," 80 GB (10000 rpm)"," DVD /-RW Dual-Layer LightScribe"," NIC"]
    });