Skip to content

Commit

Permalink
docs: update table instance docs
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed May 17, 2024
1 parent 23e44fa commit 56e3197
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/guide/tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ const table = createTable({ columns, data, getCoreRowModel: getCoreRowModel() })
//angular
this.table = createAngularTable({ columns: this.columns, data: this.data(), getCoreRowModel: getCoreRowModel() })

//lit
const table = this.tableController.table({ columns, data, getCoreRowModel: getCoreRowModel() })

//qwik
const table = useQwikTable({ columns, data, getCoreRowModel: getCoreRowModel() })

Expand Down

0 comments on commit 56e3197

Please sign in to comment.