-
Notifications
You must be signed in to change notification settings - Fork 17
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 #108
The head ref may contain hidden characters: "react-\uAE40\uBBFC\uD76C-sprint6"
[김민희] Sprint6 #108
Conversation
}); | ||
|
||
const getIsValid = (inputName, value) => { | ||
if ((inputName = "name")) value.length >= 1 && value.length <= 10; |
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.
inputName === "name" 으로 해야 동일여부를 확인할 수 있습니다. = 는 우변의 좌변으로 할당하겠다는 뜻입니다.
<header | ||
className={`flex w-full h-[70px] border-b-[1px] border-[#DFDFDF] ${ | ||
isMenuVisible | ||
? "pc:px-[200px] tablet:px-[20px] mobile: px-[20px]" |
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.
반응형 구현 시 mobile: px-[20px] 처럼 : 뒤에 한칸띄우시면 적용되지 않습니다. 개발모드에서 적용되는 경우가 있더라도 production 모드에서는 동작하지 않으니 주의하시면 좋겠습니다. pc, tablet, mobile 에 대한 반응형 구현이 필요할 때면 pc, tablet 에 대한 부분만 적용하고 mobile: 에 해당하는 prefix는 생략하셔도 괜찮습니다. 왜냐하면 tailwind 는 기본적으로 min-width 를 기준으로 크기를 지정하기 때문에 tablet, pc 시작 사이즈만 적용해도 나머지는 모두 mobile 사이즈로 반영해도 무방하기 때문입니다.
대부분의 요구사항들을 만족시켜주셨습니다. 몇 가지 코멘트 사항들을 아래 정리해 드리니 확인해 보세요. 고생하셨습니다.
|
배포 링크
https://panda-market-mhkim-react.netlify.app/
요구사항
기본
공통
랜딩 페이지
중고마켓 페이지
상품 등록 페이지
심화
상품 등록 페이지
<유효한 조건>
멘토에게