react-router history

steyu·2023년 1월 4일
0
import {useHistory, useParams} from 'react-router';
const history = useHistory();

history.goBack() // history 자체 뒤로

history.push(`/monitorWarning/monitorConfig/monitorDetail/${alarmConfigId}`)
const {alarmConfigId} = useParams<{alarmConfigId: string}>();

useParams

history.replace
push
goBack

0개의 댓글