Correção e ajustes após a atualização de Bibliotecas
Seguintes correções foram feitas:
스위치는 react-router-dom 6 버전에서 사용할 수 있습니다.
https://reactrouter.com/docs/en/v6/upgrading/v5#upgrade-all-switch-elements-to-routes
`// Antes
import { **Switch**, Route } from "react-router-dom";
<Route path="/" component={Home} />
// Depois
import { **Routes**, Route } from "react-router-dom";
<Route path='/welcome' element={<Home/>} />
ReactDOM.render는 React 18 버전에서 사용할 수 없습니다.
// Antes
import { render } from 'react-dom';
const container = document.getElementById('app');
render(<App *tab*="home" />, container);
// Depois
import { createRoot } from 'react-dom/client';
const container = document.getElementById('app');
const root = createRoot(container); // createRoot(container!) if you use TypeScript
root.render(<App *tab*="home" />);
v1에서 v2로 react-bootstrap을 수행합니다.
https://react-bootstrap.github.io/migrating/#popover
팝오버
renomear 'Content' prop para 'Body'
renomear 'Title' prop para 'Header'
`// Antes
`
<Popover>
<Popover.**Title**></Popover.**Title**>
<Popover.**Content**>
</Popover.**Content**>
</Popover>
`
// Depois
`
<Popover>
<Popover.**Header**></Popover.**Header**>
<Popover.**Body**>
</Popover.**Body**>
</Popover>
`
Reference
이 문제에 관하여(Correção e ajustes após a atualização de Bibliotecas), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/carloswherbet/correcao-e-ajustes-apos-a-atualizacao-de-bibliotecas-1bm3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)