import { createContext } from "react"; import { SortState } from "./types"; export interface TableContextProps { onSortChange?: (sortKey: string) => void; sort?: SortState; } export const TableContext = createContext(null);