Study/React

[React] Cannot read properties of undefined (reading 'params')

모모 2022. 1. 8. 17:12

 

버전6으로 바꿔서 하는게 이렇게 힘들일이였나.....? 하지만 포기하지말자

Cannot read properties of undefined (reading 'params')

 

버전6에서는 route props의 history, location 외에도 math가 더 이상 존재하지 않아서 react hook을 사용해야 한다.

 

const { postId } = match.params;

아래와 같이 변경해주면 해결된다.

import { useParams, useNavigate } from 'react-router-dom';

const { postId } = useParams();