DREAMCARD_공유하기기능개발

정소현·2024년 10월 31일
0

팀프로젝트

목록 보기
34/50

링크 클립보드에 복사하기

 const shareLink = ` http://localhost:3000/invitations/${invitationCard?.id}`;
  
  const handleCopyLink = async () => {
    navigator.clipboard
      .writeText(shareLink)
      .then(() => {
        alert('링크가 클립보드에 복사되었습니다!');
      })
      .catch((err) => {
        console.error('링크 복사 실패:', err);
        alert('링크 복사에 실패했습니다.');
      });

0개의 댓글