Creates a HTML table where each row is a key-value pair from data. First column is the key, second column data.
data
const dt = fromObject(`#hostDiv`); Copy
const dt = fromObject(`#hostDiv`);
dt is a function to call when you want to update data:
dt
dt({ name: `Blerg`, height: 120}); Copy
dt({ name: `Blerg`, height: 120});
Optional
Creates a HTML table where each row is a key-value pair from
data
. First column is the key, second column data.dt
is a function to call when you want to update data: