[ React ] Warning: ReactDOM.render is no longer
Warning
- Warning: ReactDOM.render is no longer
- React 버전 18부터는 ReactDOM.render 가 지원되지 않기때문에 React 버전을 낮추거나 index.ts 수정
- React 버전 18부터는 ReactDOM.render 가 지원되지 않기때문에 React 버전을 낮추거나 index.ts 수정
####index.ts 수정
ReactDOM.render(
<BrowserRouter>
<App />
</BrowserRouter>,
document.getElementById('root')
);
에서
import { createRoot } from 'react-dom/client';
const container = document.getElementById('root');
const root = createRoot(container);
root.render(<App tab="home" />);
이 코드로 변경 경고 해결
Author And Source
이 문제에 관하여([ React ] Warning: ReactDOM.render is no longer), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@dltmdwls15/React-Warning-ReactDOM.render-is-no-longer저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)