一、问题:react-dom.development.js:73 Warning: ReactDOM.render is no longer supported in React 18. Use createRoot instead. Until you switch to the new API, your app will behave as if it's running React 17. Learn more: https://reactjs.org/link/switch-to-createroot
意为:警告: React 18 不再支持 ReactDOM.render 方法。请改用 createRoot 方法。在切换到新的 API 之前,您的应用程序将表现得像在运行 React 17 一样。了解更多信息: How to Upgrade to React 18 – React"
二、原因
在第一次安装react的情况下,npm 默认为18版本,由于React 18 不再支持 ReactDOM.render。
三、解决