import type { Context } from "react"; import { createContext } from "react"; import type { IBlockTableContextValue } from "../config/types"; export const BlockTableContext: Context = createContext({} as IBlockTableContextValue);