React / state, props๋ฅผ ์ด์ฉํด CRUD ๊ธฐ๋ฅ์ ๊ฐ์ง Todo-List ๋ง๋ค๊ธฐ
App.jsx๋๋ณด๊ธฐ import { useState } from 'react';import './App.css';function App() { const [todoList, setTodoList] = useState([ { id: 0, content: '๋ฐฅ๋จน๊ธฐ' }, { id: 1, content: '๊ณต๋ถํ๊ธฐ' }, { id: 2, content: '์ ์๊ธฐ' }, ]); return ( );}function TodoInput({ todoList, setTodoList }) { const [inputValue, setInputValue] = useState(''); const insertTodo = () => { if (!inp..