클립보드 복사하기
ex)
1
2
3
4
5
6
7
8
9
10
11
12
const onCopy = () => {
const copiedText = 'test';
navigator.clipboard
.writeText(`${copiedText}`)
.then(() => {
alert('코드가 복사되었습니다.');
})
.catch(() => {
alert('코드 복사가 실패되었습니다.');
});
};