728x90
에러 export 'Switch' (imported as 'Switch') was not found in 'react-router-dom'
react-router-dom이 버전 6로 업그레이드되면서, Switch를 더이상 지원하지 않는다.
Switch -> routes로, component -> element로 변경됨.
기존
<Router>
<Switch>
<Route path='/' component={Counter} exact />
<Route path='/market' component={Market} exact />
</Switch>
</Router>
위와 같이 쓰던 것을
아래와 같이 쓰면 된다.
<BrowserRouter>
<Routes>
<Route path="/" element={<Home />} />
<Route path="users/*" element={<Users />} />
</Routes>
</BrowserRouter>
'React' 카테고리의 다른 글
[리액트] select box (option이 많을때 ,list map으로 옵션 불러오기) (0) | 2023.02.14 |
---|---|
Redux 예제 (Redux를 알아보자) (0) | 2023.02.14 |
[Redux] Redux의 흐름 (0) | 2023.02.08 |
[리액트] function과 class / props와 state (0) | 2023.01.11 |
[리액트] State and Lifecycle (0) | 2023.01.04 |