deku-table
v1.0.1
Published
Deku component for a table
Downloads
3
Readme
deku-table
Deku component for a table
Install
npm install deku-table
Usage
import Table from 'kvnneff/deku-table'
export function render ({props}) {
return (
<Table
rows={[
['Last Name', 'First Name'], // first row is header row
['Doe', 'Jane'],
['Smith', 'John'],
['Neff', 'Kevin']
]}/>
)
}