본문 바로가기
프로그래밍/react

Expected an assignment or function call and instead saw an expression

by 한코코 2022. 10. 31.
Expected an assignment or function call and instead saw an expression 

해석 : 할당 또는 함수 호출을 예상했지만 대신 표현식을 보았습니다.

 

요소를 소괄호()로 묶어주지 않았거나,

return을 사용해 값을 반환함에도 중괄호{}로 묶지 않았던가.

// 해결전
const defaultValue = useMemo(() => {state, dispatch}, [state]);
 
// 해결후
const defaultValue = useMemo(() => ({state, dispatch}), [state]);

댓글