본문 바로가기
Front-end/React

[React] 새창 Pop up 데이터 넘겨주는 방법

by 꼬바리 2023. 7. 19.
const childPopup = useRef()

const onPopup = () => {
    const url = `/preview`
    childPopup.current = window.open(url, "_blank"); // "noopener, noreferrer"
    childPopup.current.param = param
}

.
.
.
<button type="button" className="btn-circle" onClick={onPopup}>미리보기</button>

 

param 을 넘겨주면 새창 컴포넌트에 props 에 param이 담겨있다. 신기방기

 

childPopup.current.param = param

728x90
반응형

댓글