TanStack Table - Quick Learning
Basic React Table
Create an instance of a react-table.
const BasicTable = () => {
......
...
const table = useReactTable({ data, columns })
return (
<div></div>
)
}
data is the data the table contains. Columns need to b...
abeer.hashnode.dev5 min read