react Switch is no longer supported in React 18

star_is_mine·2022년 11월 27일
0

short code block

목록 보기
1/1

<Switch>  
  <Route path="/login"><Login /></Route>  
  <Route path="/"><App /></Route>  
</Switch>

아래와같이 고치면 된다.

<Routes>
  <Route path="/login" element={<Login />} />
  <Route path="/" element={<App />} />
</Routes>

핵심은 
1. Switch -> Routes
2. element={<Login />}
done.
profile
i have a dream and I will make my dreams come true.

0개의 댓글