Tables in React


Uncategorized

Updated Mar 8th, 2022

The most popular option out there seems to be React-Table from Tanner Lindley’s Tanstack, (1m weekly downloads).

From them, “A table is an arrangement which organizes information into rows and columns. It is used to store and display data in a structured format. The react-table is a lightweight, fast, fully customizable (JSX, templates, state, styles, callbacks), and extendable Datagrid built for React.”

This article here brings up the important point that sortable and filterable is a key feature you want to be able to easily implement, (in Vanilla JS I have done this from scratch using “dcode” tutorial and it’s not the simplest to put together quickly).