gridsify
Version:
react + vite data grid generator
7 lines (6 loc) • 302 B
TypeScript
import { TableTdFunctionTypes, TableThFunctionTypes } from '../types';
declare const useTable: {
makeTableTdData: ({ array, setter, page, perPage, thMap, }: TableTdFunctionTypes) => void;
makeTableThData: ({ addedMap, thMap, setter }: TableThFunctionTypes) => void;
};
export default useTable;