comtimes / comtimes-frontend

0 stars 0 forks source link

기사 목록 보기 페이지 _ 라우팅 도입하기 #14

Open zwonlala opened 2 years ago

zwonlala commented 2 years ago

관련 참조할 글

zwonlala commented 2 years ago

react-router VS react-router-dom? 🤔

위 두개의 차이점에 대해 검색하다가 아래 링크를 찾게됨

stackoverflow "react-router vs react-router-dom, when to use one or the other?"

정리하면

zwonlala commented 2 years ago

Error "Type '{ exact: true; path: string; component: () => ReactElement<any, string | JSXElementConstructor>; }' is not assignable to type 'IntrinsicAttributes & (PathRouteProps | LayoutRouteProps | IndexRouteProps)'

스크린샷 2022-03-07 오후 11 28 48

// old - v5 <Route exact path="/" component={Home} />

// new - v6 <Route path="/" element={<Home />} />