반응형
react(ts)에서 router로 페이지를 이동시키려 할때 useHistory를 사용하려하니 위 경고문이 떴습니다.
해결책은 useNavigate 사용입니다
import { useNavigate } from 'react-router-dom';
const navigate = useNavigate();
# useEffect안에서만 사용 가능합니다
useEffect(() => {
navigate('/home');
},[])
이상입니다
'개발 > typescript' 카테고리의 다른 글
[NestJs] Validation이 안되요... (0) | 2023.06.28 |
---|---|
[TS] Catch clause variable type annotation must be 'any' or 'unknown' if specified. (0) | 2022.07.21 |
[Typescript] Object is of type 'unknown' (0) | 2022.06.02 |
type concat (0) | 2022.05.02 |
typescript+pwa 구현하기 (0) | 2021.04.29 |