본문 바로가기
728x90

React24

CSS 속성 사용시 타입 에러 해결 방법 원인 @types/react/index.d.ts의 HTMLAttributes interface에 css 속성이 없는데, 추가하려고 할 때 타입 에러가 발생한다. 해결 tsconfig.json > compileOptions 에 types 추가 2023. 12. 11.
Error: could not find react-redux context value; please ensure the component is wrapped in a <Provider> Error: could not find react-redux context value; please ensure the component is wrapped in a 이렇게 뜨는 이유가 무엇인가~ 여기서 Provider로 감싸줘야 한다 감싸줄 때 import로 불러 올 때 주의할 것! 자동으로 뜨는걸로 하면 react-redux로 불러 올 수 있다 다시 수정해서 Provider가 어디있는지 찾아준다 2023. 8. 24.
lement type is invalid: expected a string (for built-in components) or a class/function... 이런 오류가 뜨면 스타일을 빠뜨렸는지 보자 2023. 8. 22.
redux 에러코드 Error: Cannot read properties of undefined (reading 'getState') Error: Cannot read properties of undefined (reading 'getState') import { Provider } from 'react-redux' 이걸로 했다면 실수 import Provider from '../redux/provider' 이렇게 수정 2023. 8. 14.
redux toolkit 보호되어 있는 글 입니다. 2023. 7. 10.
npm install redux-thunk --save npm install redux-thunk --save를 설치해야 되는 에러 원래 Actions은 객체여야 하는데 함수를 Dispatch하고 있다. 그래서 생기는 에러이다. 함수를 dispatch 할 수 있게 해주는 React-Thunk 미들웨어를 설치해야 한다 2023. 7. 7.
728x90