// react beautiful dnd
import { Draggable } from "react-beautiful-dnd";
interface IssueContentProps {
columnId: string;
issues: any;
}
export const IssueContent = ({ columnId, issues }: IssueContentProps) => {
console.log();
return (
<>
{issues && issues.length > 0 ? (
<>
{issues.map((issue: any, index: any) => (