import { createContext } from 'react'; import { TableOptions, TableState, TreeGridState } from './Table.types'; export const TableStateContext = createContext | TreeGridState | null>(null); export const TableOptionsContext = createContext(null);