21.01.21 - TIL [ react ]

jinny·2022년 1월 21일
0

TIL

목록 보기
30/32
post-thumbnail

react-router-dom 버전 업데이트

useHistory => useNavigate

변경 전

import { useHistory } from "react-router-dom";

const history = useHistory();

history.push("/");
history.replace("/");

변경 후

import { useNavigate } from "react-router-dom";

const navigate = useNavigate();

navigate("/");
navigate("/", { replace:true });
profile
주니어 개발자의 기록

0개의 댓글