-
Notifications
You must be signed in to change notification settings - Fork 5
feat: 알바토크/글쓰기페이지 #104
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: 알바토크/글쓰기페이지 #104
Conversation
|
💄 Storybook: https://673dcf13c9a3a1189a7c6fd4-fvxzhpqorb.chromatic.com/ # Chromatic에서 생성된 Storybook URL |
|
workroot/src/app/(pages)/(addform)/addform/page.tsx |
| alt="Kebab Menu Icon" | ||
| width={isLargeScreen ? 28 : 24} | ||
| height={isLargeScreen ? 28 : 24} | ||
| />{" "} |
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.
불필요한 공백 {" "} 이 들어간거같아요!
|
|
||
| const Comment: React.FC<CommentProps> = ({ userName, date, comment }) => { | ||
| const Comment: React.FC<CommentProps> = ({ userName, date, comment, onKebabClick }) => { | ||
| const [isLargeScreen, setIsLargeScreen] = 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.
useWidth 훅을 활용하셔도 됩니다
| }; | ||
| }, [setValue]); | ||
|
|
||
| const handleImageClick = () => { |
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.
이미지 선택할때 또는 제출할때 image 업로드 api를 한번 거쳐서 url을 받아야합니다
PR comment 확인부탁드려요~
| </form> | ||
| </div> | ||
| </div> | ||
| {/* 모바일 버전 버튼 */} |
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.
모바일버전 버튼을 따로 만들어주신 이유가 있을까요?
hongggyelim
left a comment
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.
확인했습니다!
yyezzzy
left a comment
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.
수고하셨습니다
지금 이미지 url 요청이 안 가고 있는데 원인을 모르겠습니다. 일단 올리고 나중에 마저 수정하겠습니다.