[React]2ページ戻りたい時react router
ページを更新したい時は、
window.location.reload();
document.location.reload();でも同じ動作だが、こちらは非推奨
react routerを使用し、2ページ戻りたい時
import { useHistory } from "react-router-dom"
export const AfterRoom = () => {
const history = useHistory();
history.go(-2);
return <div></div>
}