import Header from "../components/Header"; const InvitePage = () => { const usercheck = localStorage.getItem("user"); function goInvitedroom() { let check1= null; let check2= null; if (usercheck) check1 = window.confirm("카카오톡으로 전달된 초대코드를 사용해 참여해 주세요") if(check1) window.location.href=`/user/${usercheck}` else check2 = window.confirm("로그인이 필요합니다.") if(check2) window.location.href="/" } function invitereject() { if(usercheck) window.location.href=`/user/${usercheck}` else window.location.href="/" } return (
{/*페이지 전체*/}
{/* 위 사진,이름 */}
{/* 방 부분

초대받은 방

방 id: ${roomid}

*/}
{/* 아래 텍스트 */}

축하합니다! 친구가 당신을
화상회의에 초대했습니다.

초대를 수락하시겠습니까?

{/* 수락, 거절 버튼 */}
); }; export default InvitePage;