https://tanstack.com/table/latest/docs/framework/react/examples/filters https://mockaroo.com/:random data generator https://codesandbox.io/p/devbox/github/tanstack/table/tree/main/examples/react/filters?file=%2Fsrc%2Fmain.tsx&from-embed= import React ,{ useState } from 'react' import Data from '../Data.json' ; import { Box } from '@chakra-ui/react' ; import { flexRender , getCoreRowModel , getPaginationRowModel , getSortedRowModel , useReactTable , getFilteredRowModel } from '@tanstack/react-table' ; const columns = [ { accessorKey : "id" , header : "ID" , //cell:(props)=><p>{props.getValue()}</p>//this is used for formating... }, { accessorKey : "name" , header : "name" , //cell:(props)=><p>{props.getValue()}</p> ...