import React, { forwardRef } from 'react'; import { Draggable } from 'react-beautiful-dnd'; import Card from './Card'; import CardAdder from './CardAdder'; import { pickPropOut } from './utils'; import withDroppable from './withDroppable'; const ColumnEmptyPlaceholder = forwardRef((props, ref: any) => (
)); const DroppableColumn = withDroppable(ColumnEmptyPlaceholder); function Column({ children, index: columnIndex, renderCard, renderCardAdder = ({ column, onConfirm }) =>