[React] React Hooks (11) - useConfirm, usePreventLeave
2023. 2. 8. 20:34
프로그래밍/React
useConfirm, usePreventLeave useConfirm, usePreventLeave를 간단하게 hooks로 만들어보자 useConfirm 예시 1 버튼 클릭 시 Are you sure 라는 confirm 창이 나오고 확인을 누르면 Delete the world 출력 취소를 누르면 Aborted 출력되는 간단한 함수형 프로그래밍 const useConfirm = (message = "", onConfirm, onCancel) => { if (!onConfirm && typeof onConfirm !== "function") { return; } if (onCancel && typeof onCancel !== "function") { return; } const confirmAction = ..