react-router-dom v6 파라미터 넘기고 받기

kiten Jung·2022년 4월 11일
0

라이브러리

목록 보기
4/9

파라미터 넘기기
import { useNavigate } from 'react-router-dom';

const navigate = useNavigate();
navigate('/PhoneProf', { state: { phoneNumber: watch('phoneVal') } })

파라미터 받기(ts)

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

interface ILocation {
    state: {
   		 phoneNumber: string;
	};
}

const { state } = useLocation() as ILocation;
const { phoneNumber } = state;
profile
느림느림

0개의 댓글