치악산 복숭아
[error] create is not a function at commitHookEffectListMount 본문
리액트 실습하고 있는데 발견해서 쓰는 에러 로그,,,(._.
원인은 useEffect에 콜백함수가 안들어왔기 때문이라고 한다
//수정 전
useEffect(console.log(inputValue), [inputValue]);
//수정 후
useEffect(() => {console.log(inputValue)}, [inputValue]);
함수 넘겨주는걸로 문제 해결🥲
'FE > React' 카테고리의 다른 글
CRA 없이 리액트 개발환경 구축하기(feat. typescript, webpack, babel) (0) | 2022.04.05 |
---|---|
[error] the server responded with a status of 405 (Not Allowed) (0) | 2022.01.30 |
[React] 무결성을 유지하면서 const 변수 값 수정하기 (0) | 2021.08.31 |
[React] 틱택토 추가 기능 구현하기 (2) (0) | 2021.08.17 |
[React] 틱택토 추가 기능 구현하기 (1) (0) | 2021.07.29 |
Comments