FPL Table
FplTable
new Table(col1,col2,...)
- creates an empty table with the columns
columns
rows
// example of creating an empty table with new Table
let t = new Table("colA", "colB", "colC")
return {t}
// example of creating a table
let arr = [{id: 1, cola: 2}, {id:3, cola: 4}]
let t = jsonTable(arr)
return {t}