개발&etc/React

[React]에러: react_dom_client__WEBPACK_IMPORTED_MODULE_1__.render is not a function show in the console of localhost:3000

JAm2s 2023. 3. 24. 10:44
728x90

 

🥨 에러메세지

at Module../src/index.js (index.js:7:1)
at Module.options.factory (react refresh:6:1)
at __webpack_require__ (bootstrap:24:1)
at startup:7:1
at startup:7:1

 

❗ 해결 방안

import {StrictMode} from 'react';
import {createRoot} from 'react- 
dom/client';

import App from './App'

 

참고: https://stackoverflow.com/questions/71945583/react-dom-client-webpack-imported-module-1-render-is-not-a-function-show-in-t

728x90