-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: 취소/등록 버튼 컴포넌트 구현 #9
feat: 취소/등록 버튼 컴포넌트 구현 #9
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨어요 👍
if (onCancel) { | ||
onCancel(); | ||
} else { | ||
navigate(-1); //기본 동작 -> 이전페이지 이동 | ||
console.log('취소 버튼 클릭'); | ||
} | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if else 문보다 early return 문을 사용하시는 건 어떠신가용
if (onCancel) { | |
onCancel(); | |
} else { | |
navigate(-1); //기본 동작 -> 이전페이지 이동 | |
console.log('취소 버튼 클릭'); | |
} | |
}; | |
if (onCancel) { | |
return onCancel(); | |
} | |
navigate(-1); //기본 동작 -> 이전페이지 이동 | |
console.log('취소 버튼 클릭'); | |
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
early return문 적용했슴니당!
if (onSubmit) { | ||
onSubmit(); | ||
} else { | ||
// 등록 완료 페이지로 이동 | ||
// navigate('/success'); // 등록 완료 페이지 경로 설정 필요 | ||
console.log('등록 완료 페이지로 이동'); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이것두요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다.
수고하셨습니다!! |
🚩 관련 이슈
📋 구현 기능 명세
📌 PR Point
기존의 test버튼 하단에 확인 가능하도록 임시로 넣어뒀습니다
이전 페이지 이동은 현재는 console로도 확인 가능하도록 작성했습니다
아직 등록 완료 페이지 구현 전이라 주석으로 처리해뒀습니다 (현재는 console로만 확인 가능)
폰트 사이즈 일단 피그마의 28px로 구현했는데 좀 많이 큰 거 같아서 이건 다시 말씀드려야 할 듯 함다
📸 결과물 스크린샷
🛠️ 테스트
🚀 API Endpoint