본문 바로가기

신나는 오류해결파티!!!

[오류기록] react_dom_client__WEBPACK_IMPORTED_MODULE_1___default.a.render is not a function

 

 

 

 

오류를 구글에서 검색해보니 

 

https://velog.io/@owlsuri/Uncaught-TypeError-reactdomclientWEBPACKIMPORTEDMODULE1.render-is-not-a-function

이분의 오류 해결 블로그 글을 발견했다. 이 분도 아래의 링크를 참조하여 오류해결하였다고 나왔다. 

https://badcodernocookie.com/uncaught-typeerror-react_dom_client__webpack_imported_module_1__-is-not-a-function/

 

 

 

 

[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 />);

로 변경했더니 

 

문제없이 잘 작동되었다.