import { CellIdentifier } from '@/appflowy_app/stores/effects/database/cell/cell_bd_svc'; import { CellCache } from '@/appflowy_app/stores/effects/database/cell/cell_cache'; import { FieldController } from '@/appflowy_app/stores/effects/database/field/field_controller'; import { useCell } from '../../_shared/database-hooks/useCell'; import { EditCellNumber } from '../../_shared/EditRow/EditCellNumber'; export const GridNumberCell = ({ cellIdentifier, cellCache, fieldController, }: { cellIdentifier: CellIdentifier; cellCache: CellCache; fieldController: FieldController; }) => { const { data, cellController } = useCell(cellIdentifier, cellCache, fieldController); return (