
오류를 구글에서 검색해보니
이분의 오류 해결 블로그 글을 발견했다. 이 분도 아래의 링크를 참조하여 오류해결하였다고 나왔다.
[Solved] Uncaught TypeError: react_dom_client__WEBPACK_IMPORTED_MODULE_1__ is not a function - Bad Coder, No Cookie!
"Uncaught TypeError: react_dom_client__WEBPACK_IMPORTED_MODULE_1__ is not a function" means you forgot curly braces!
badcodernocookie.com
변경전 index.js 파일 일부
ReactDOM.render(<App />, document.getElementById("root"));
에서
변경후 index.js 파일 일부
ReactDOM.createRoot(document.getElementById("root")).render(<App />);
로 변경했더니
문제없이 잘 작동되었다.
'신나는 오류해결파티!!!' 카테고리의 다른 글
[오류기록] Module not found: Can't resolve 'react-dom' (0) | 2022.09.16 |
---|---|
[오류기록] git add .안될때 Another git process seems to be running in this repository (0) | 2022.09.14 |
[오류기록] react babel-jest 호환되지 않는 버전 관련 오류 (0) | 2022.09.11 |
[문제점 해결해보기] flex-basis (0) | 2022.04.29 |
[문제해결해보기] image 밑에 흰 여백 (0) | 2022.04.28 |