import React from 'react' import type { SyncContext } from './types' export const GridSyncContext = React.createContext({ enabled: false, scroll: { subscribe: () => () => {}, update: () => {}, }, height: { subscribe: () => () => {}, update: () => [], }, hover: { subscribe: () => () => {}, update: () => {}, }, })