import { sortableContainer, SortableElement, } from 'react-sortable-hoc' import { Button} from 'antd' import backendURL from '../helpers/backendUrl' export const SortableItem = SortableElement(({ url, onRemoveImage, _id }) => { return ( <> ) }) export const SortableContainer = sortableContainer( ({ children }) => { return ( <> ) }, )