import { Draggable } from '@hello-pangea/dnd'; import { BoardOptions } from '../types/BoardOptions'; export function EntityBoardCard({ boardOptions, cardId, index, }: { boardOptions: BoardOptions; cardId: string; index: number; }) { return ( {(draggableProvided) => (
{boardOptions.cardComponent}
)}
); }