React DataTable Component provides sorting, pagination, responsive layout, search, and export buttons for interactive table data. Please read the official DataTables documentation for the full list of options.
import DataTable from 'datatables.net-react'; import DataTablesCore from 'datatables.net-bs5'; DataTable.use(DataTablesCore); export default function TablePlugins() { return <DataTable options={{ responsive: true, paging: true, searching: true }} />; }