-
Notifications
You must be signed in to change notification settings - Fork 2
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] Login, Singup 페이지 GUI 반영 #317
base: develop
Are you sure you want to change the base?
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.
고생하셨습니다 !! 페이지가 나뉘니까 로직도 좀 분리가 돼서 좋네요
<Flex styles={{ direction: 'column', width: '100%', gap: '1.6rem' }}> | ||
<TermsAgreeButton isClicked={totalAgreeClicked} onClick={handleAllTermsAgree} /> | ||
|
||
<TermItem |
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.
map을 사용해서 TermItem 컴포넌트를 리턴하면 코드의 중복을 줄일 수 있을 것 같습니다
}; | ||
|
||
export const useTermForm = () => { | ||
const [totalAgreeClicked, setTotalAgreeClicked] = useState(false); |
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.
불리언 값의 상태이니 be동사를 앞에 붙이는 게 좋을 것 같습니다
<Input | ||
name="birth" | ||
value={info.birth} | ||
onChange={handleBirthChange} | ||
label="생년월일" | ||
placeholder={PLACEHOLDER.BIRTHDAY} | ||
/> |
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.
생년월일 DatePicker로 지정하는 거 아니었나용 ?
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.
LGTM~ 수고하셨습니다 👍
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.
LGTM입니다!!
해당 이슈 번호
closed #
체크리스트
💎 PR Point
로그인 페이지와 회원가입 페이지에서 바뀐 GUI를 반영하였습니다 ! 퍼블리싱이여서 딱히 포인트는 없습니다
불필요한 훅이나 파일들을 삭제하였고, 그리고 필요하다 싶은 커스텀 훅 정도만 만들어두었습니다. 인풋의 유효성 검사나 폼 제출 로직은 아직 제대로 구현하지 않은 상태여서 페이지 컴포넌트들, 스타일 정도만 확인해주시면 감사하겠슴니당 ~
그리고 추후에
funnel
구조를 붙힐 예정인데요 ! 생각해보았을 때 각 회원가입에 대한 단계는url
로 접근할 수 없어야 하고이용약관
->univ 폼
->info 폼
순서대로 유저에게 보여주어야 하기 때문에 퍼널 구조를 구현할 생각입니다.📌스크린샷 (선택)
2024-11-06.3.32.50.mov