import { Draggable } from "react-beautiful-dnd"; import { Box, ListItem } from "@mui/material"; import QuestionsPageCard from "./QuestionPageCard"; import { ReactComponent as PlusIcon } from "../../../assets/icons/plus.svg"; type DraggableListItemProps = { index: number; dropPlaceIndex: number; }; export const DraggableListItem = ({ index, dropPlaceIndex, }: DraggableListItemProps) => ( {(provided, snapshot) => ( {dropPlaceIndex === index && !snapshot.mode && ( )} )} );