const [dragStartIndex, setDragStartIndex] = useState(null); const [dragEnterIndex, setDragEnterIndex] = useState(null); const handleAddShowImg = (e: ChangeEvent) => { if (!e.target.files) return; if (e.target.files.length + showImg.length > 8) { alert('등록할 수 있는 이미지의 최대 갯수는 8장입니다.'); return; } const imgList = e.target.files; const imgUrlList = [...showImg]; for (let i = 0; i < imgList.length; i++..