05-12 SubRoute

골솔·2021년 5월 12일
0

ㅇㅇㅇㅈ 근로

목록 보기
9/15

😁 한 일

  • <Router> 는 최상위에만 있어야함
<Router>
  <Switch>
    <Route exact path="/Login" component={Login} />
    <Route exact path="/MyPage" component={MyPage} />
    <Route path="/SignUp" component={SignUp} />
  </Switch>
</Router>
  • 서브라우팅 할 때 빈 화면만 떴다 👉 exact 없애니 해결됨
    이것때문에 몇 시간이나 고생했다ㅜㅜ
<Switch>
  <Route path="/SignUp/Privacy" component={Privacy} />
  <Route path="/SignUp/Terms" component={Terms} />
  <Route path="/SignUp/Account" component={Account} />
  <Route path="/SignUp/Complete" component={Complete} />
</Switch>

🤔 할 일

  • 회원가입 api 이용해서 구현, 테스트
profile
골때리는이솔

0개의 댓글