Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 자바스크립트
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- Concurrently
- 웹 게임을 만들며 배우는 리액트
- Colaboratory 글자 깨짐
- 인프런
- 거북이 대포 게임
- DB Browser
- 계산맞추기 게임
- props
- Python
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- googleColaboratory
- spring-boot
- intellij
- Do it 자바스크립트 + 제이쿼리 입문
- react오류
- node.js 설치
- react
- Spring-Framework
- 리액트
- 따라하며 배우는 노드 리액트 기본 강의
- JS 개념
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- node.js로 로그인하기
- 타자 게임 만들기
- vs code 내 node
- 모던자바스크립트
- 노드에 리액트 추가하기
- 모두의 파이썬
Archives
- Today
- Total
프로그래밍 삽질 중
[React ] 업데이트로 인한 오류 수정 본문
* 인프런의 "따라하며 배우는 노드, 리액트 시리즈 - 기본 강의" - #29, 30 로그인 페이지 내용 중 오류 발생
오류 1) ReactDOM.render is no longer supported in React 18. Use createRoot instead
- 문제 원인 : 리액트가 업데이트 됨에 따라 ReactDOM 대신 createRoot 사용할 것
오류 2) You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- 문제 원인 : 리액트가 업데이트 됨에 따라 react-dom대신 react-dom/client 사용할 것
[해결방법]
공식 문서 : https://ko.reactjs.org/docs/concurrent-mode-reference.html#createroot
참고 블로그 : https://velog.io/@citron03/React-18%EC%97%90%EC%84%9C-ReactDOM.render%EC%99%80-createRoot
[해결]
코드 변경 전
import React from "react";
import ReactDOM from "react-dom"; //오류 1
import "./index.css";
import App from "./App";
import { Provider } from "react-redux";
import { applyMiddleware, createStore } from "redux";
import promiseMiddleware from "redux-promise";
import ReduxThunk from "redux-thunk";
import Reducer from "./_reducers";
const createStoreWithMiddleware = applyMiddleware(
promiseMiddleware,
ReduxThunk
)(createStore);
ReactDOM.render( //오류 2
<Provider
store={createStoreWithMiddleware(
Reducer,
window.__REDUX_DEVTOOLS_EXTENSION__ &&
window.__REDUX_DEVTOOLS_EXTENSION__()
)}
>
<App />
</Provider>
);
//</React.StrictMode>,
, document.getElementById('root'));
코드 변경 후
import React from "react";
import ReactDOM from "react-dom/client"; //오류 1 해결
import "./index.css";
import App from "./App";
// import * as serviceWorker from "./serviceworker";
import { Provider } from "react-redux";
// import "antd/dist/antd.css";
import { applyMiddleware, createStore } from "redux";
import promiseMiddleware from "redux-promise";
import ReduxThunk from "redux-thunk";
import Reducer from "./_reducers";
const createStoreWithMiddleware = applyMiddleware(
promiseMiddleware,
ReduxThunk
)(createStore);
const rootNode = document.getElementById("root"); //오류 2 해결
ReactDOM.createRoot(rootNode).render(//오류 2 해결
<Provider
store={createStoreWithMiddleware(
Reducer,
window.__REDUX_DEVTOOLS_EXTENSION__ &&
window.__REDUX_DEVTOOLS_EXTENSION__()
)}
>
<App />
</Provider>
);