import { useSetSoftFocusOnCurrentCell } from '../hooks/useSetSoftFocusOnCurrentCell'; import { EditableCellDisplayContainer } from './EditableCellContainer'; export function EditableCellDisplayMode({ children, }: React.PropsWithChildren) { const setSoftFocusOnCurrentCell = useSetSoftFocusOnCurrentCell(); function handleClick() { setSoftFocusOnCurrentCell(); } return ( {children} ); }