2주차 리액트 투두리스트 만들기 회고
Falsy; 거짓으로 간주된 값 false 0 -0 0n "" null undefined NaN ... 문법 // 수정전 setState({ toDoInput: '', toDos: [newToDo, ...toDos], }); // 수정후 setState({ toDoInput: '', toDos: [...toDos, newToDo], }); ★ 리액트에서 input 상태관리 input 태그 value onChange input 태그의 onChange 관련 handler; handleToDoInput // App 컴포넌트 function App(){ const [state, setState] = useState({ toDoInput: '', toDos: [], }); const { toDoInput, toD..
2020.06.13