react -错误 Uncaught TypeError: react_dom_client__WEBPACK_IMPORTED_MODULE_1__.render is not a function

错误:
react -错误 Uncaught TypeError: react_dom_client__WEBPACK_IMPORTED_MODULE_1__.render is not a function_第1张图片

错误代码:
react -错误 Uncaught TypeError: react_dom_client__WEBPACK_IMPORTED_MODULE_1__.render is not a function_第2张图片

解决:

import React from 'react';
// import ReactDOM from 'react-dom/client';
// 上面是错误写法
import ReactDOM from 'react-dom';
import './index.css';

function Hello() {
  return (
    <div>这是我的第一个组件</div>
  )
}

// 或者 render 中渲染组件
ReactDOM.render(<Hello/>, document.getElementById('root'))

参考
Cannot find module ‘react-dom/client‘

你可能感兴趣的:(react,webpack,react.js,javascript)