JS react-router-dom 버젼 변경 확인점

SA Jung·2022년 11월 1일
0

JS & React JS

목록 보기
3/6
post-thumbnail

5.3버전 (인강)

  • Switch
function App() {
  return (
    <Router>
      <Switch>
        <Route path="/movie">
          <Detail />
        </Route>
        <Route path="/">
          <Home />
        </Route>
      </Switch>
    </Router>
  );
}

6버전

  • Switch가 Routes로 대체
  • Router내부에 element prop에 컴퍼넌트 할당
function App() {
  return (
    <Router>
      <Routes>
        <Route path="/movie" element={<Detail/>}/>
		<Route path="/" element={<Home/>}/>
      </Routes>
    </Router>
  );
}
profile
Tomorrow will be better than yesterday :)

0개의 댓글