import { NoBlocks } from '@/lib/blocks/components/NoBlocks/NoBlocks'; import { cells } from '@/lib/blocks/create-blocks-typed/create-blocks-typed'; import { useManualReviewBlocksLogic } from '@/lib/blocks/variants/ManualReviewBlocks/hooks/useManualReviewBlocksLogic/useManualReviewBlocksLogic'; import { BlocksComponent } from '@ballerine/blocks'; import { DEFAULT_PROCESS_TRACKER_PROCESSES } from '@/common/components/molecules/ProcessTracker/constants'; import { CaseOverview } from '@/pages/Entity/components/Case/components/CaseOverview/CaseOverview'; export const ManualReviewBlocks = () => { const { blocks, isLoading } = useManualReviewBlocksLogic(); return ( <> {(Cell, cell) => } {!isLoading && !blocks?.length && } ); };