TDLR SortableJS make things really easy !
For those who just want the final result, here is the code and a demo just below Code import React, { useState, useEffect, useRef } from 'react';
import Sortable from 'sortablejs';
import './style.css';
const initData = Array.from({ length: 15 }, (_, i) => ({
_id: (i +…