• 카테고리

    질문 & 답변
  • 세부 분야

    풀스택

  • 해결 여부

    미해결

리액트 라우터가 /accounts 에서 동작을안합니다

23.01.13 17:39 작성 조회수 299

0

/accounts 페이지는 내용이 나오는데

accounts route가 동작을 하지않는거같습니다

오류는 하나도안뜨고 최상단페이지만 뜨고있는데 해결방법이 궁금합니다

import React from "react";
import { Route } from "react-router-dom";
import Profile from "./Profile";
import Login from "./Login";
import Signup from "./Signup";

function Routes({ match }) {
  return (
    <>
      {match.url}
     
      <Route exact path={match.url + "accounts/profile"} component={Profile} />
      <Route exact path={match.url + "/login"} component={Login} />
      <Route exact path={match.url + '/signup'} component={Signup} />
    </>
  );
}
export default Routes;

답변 1

답변을 작성해보세요.

1

봄봄님의 프로필

봄봄

질문자

2023.01.13

해결하였습니다

accounts 이동시 exact를 설정해놓으니깐 하위항목조차 이동이 안되게 되었네요./.

화이팅입니다. :-)