// react beautiful dnd import { Draggable } from "@hello-pangea/dnd"; interface IssueBlockProps { sub_group_id: string; columnId: string; issues: any; } export const IssueBlock = ({ sub_group_id, columnId, issues }: IssueBlockProps) => { console.log(); return ( <> {issues && issues.length > 0 ? ( <> {issues.map((issue: any, index: any) => ( {(provided: any, snapshot: any) => (
ONE-{issue.sequence_id}
{issue.name}
Footer
)}
))} ) : (
No issues are available.
)} ); };