반응형
자바스크립트 참조 타입
-
react-beautiful-dndFrontEnd/React 2023. 11. 22. 21:00
react-beautiful-dnd 모듈을 사용하여 TodoApp에 Drap and Drop 기능을 추가합니다. react-beautiful-dnd npm install react-beautiful-dnd --save index.js(StrictMode 제거) const root = ReactDOM.createRoot(document.getElementById("root")); root.render( // // ); Lists.js import React from "react"; import { DragDropContext, Draggable, Droppable } from "react-beautiful-dnd"; export default function Lists({ todoData, setTodoD..