-
Notifications
You must be signed in to change notification settings - Fork 21
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
[김가희] sprint6 #113
The head ref may contain hidden characters: "React-\uAE40\uAC00\uD76C-week6"
[김가희] sprint6 #113
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.
가희님 이번 스프린트 미션 하시느라 고생하셨어요~
제가 작업중인 파일이라도 올려달라고 부탁드렸는데 들어주셔서 감사합니다
아직 UI 작업과 구조를 잡으시는 중이신 것 같고 올려주신 것들은
다 괜찮아서 피드백 드릴 것이 거의 없었네요~
다만 코드 공백이 좀 정리가 안된느낌이 있어서 prettier 같은 것을 쓰시면 어떨까싶습니다~
아래 링크를 참고해보세요~
https://velog.io/@gangk_99/VS-Code-Prettier-%EC%84%A4%EC%A0%95%ED%95%98%EA%B8%B0
className={style.searchBar} | ||
placeholder="검색할 상품을 입력해주세요" | ||
></input> | ||
<button className={style.btnStyle}>상품 등록하기</button> |
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.
P2:
button 태그의 경우 type을 명시해주시는 것이 좋습니다~
<button className={style.btnStyle}>상품 등록하기</button> | |
<button type='button' className={style.btnStyle}>상품 등록하기</button> |
<input | ||
className={style.searchBar} | ||
placeholder="검색할 상품을 입력해주세요" | ||
></input> |
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.
P3:
children값이 없을 경우 아래처럼 하셔도 됩니다~
<input | |
className={style.searchBar} | |
placeholder="검색할 상품을 입력해주세요" | |
></input> | |
<input | |
className={style.searchBar} | |
placeholder="검색할 상품을 입력해주세요" | |
/> |
요구사항
기본
심화
주요 변경사항
스크린샷
멘토에게