반응형
https://github.com/ReactTraining/react-router/releases/tag/v5.1.0
PathVariable 을 받을 때 match 값을 hook으로 받을 수 있게 react router v5에서 추가되었다.
아래와 같이 사용하면 된다.
import { useRouteMatch } from 'react-router-dom';
const Component = () => {
const { params }: any = useRouteMatch();
// /path/:idx
return (
<div>{params?.idx}</div>
);
};
export default Component;
반응형
'웹프로그래밍 > React' 카테고리의 다른 글
[React.js] Object is possibly 'null' (0) | 2020.08.28 |
---|---|
[React.js] unmounted component memory leak (0) | 2020.08.28 |
[React] React Hook 에서 array state 업데이트시 리렌더링 되지 않을때 (0) | 2020.08.26 |
[React] Component Link to 로 연결시 스크롤 문제 해결 (0) | 2019.05.28 |