import { Draggable } from '@hello-pangea/dnd'; import { DragHandleHorizontalIcon } from '@radix-ui/react-icons'; import { Box, Button, Card, Flex, Text } from '@radix-ui/themes'; type TTaskCard = { title?: string; description?: string; id?: string; index?: number; }; export default function TaskCard(props: TTaskCard) { return ( {(provided) => ( {props.title} )} ); }