# `` Wraps `children` into a table with specified column number. ## Usage Below renders 2x3 table. ```jsx import {ListTable} from 'libreact/lib/ListTable';
1
2
3
4
5
6
``` ## Props - `cols` — optional, number or columns table should have, defaults to `3`. - `renderRow` — optional, function that receives an array of `` cells as React elements and should return a `` React element, defaults to `cells => h('tr', null, ...cells)`.