Skip to content

Instantly share code, notes, and snippets.

View philly-vanilly's full-sized avatar

Philip Lysenko philly-vanilly

View GitHub Profile
@philly-vanilly
philly-vanilly / react-table-with-server-sorting-and-pagination.jsx
Last active April 9, 2024 04:48
react-table manual sort and pagination
import React, { useState, useEffect, useCallback } from "react";
import { useTable, useSortBy, usePagination } from "react-table";
import makeData from "./makeData";
const serverData = makeData(10000);
function Table({
columns,
data,
fetchData,