const serviceDownloadHandler = () => {
const link = document.createElement('a');
link.href = '파일경로';
link.download = '파일이름.pdf';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
};
<button className={styles.variousLinkButton} onClick={serviceDownloadHandler}>
'업무 회고' 카테고리의 다른 글
스크롤 속도를 컴포넌트마다 다르게 하는 법 (0) | 2025.03.20 |
---|---|
props를 하위 컴포넌트에서 상위 컴포넌트로 보내는 방법 (0) | 2025.03.10 |
inline CSS가 CSS 파일 속 CSS를 덮어버렸을 때 해결방법 (0) | 2025.03.05 |
2025년 2월 개발 회고 (0) | 2025.03.04 |
react-progress-bar로 프로그레스 바 만들기 (0) | 2025.03.04 |
댓글