Merged
Conversation
bk-git-hub
reviewed
Mar 19, 2026
Collaborator
bk-git-hub
left a comment
There was a problem hiding this comment.
다혜님 고생 많으셨습니다!
React가 처음이신걸로 알고있는데 그럼에도 불구하고 컴포넌트 분리도 정말 잘 해 주셨습니다.
아래에는 다음에 한 번 더 다듬어보면 좋을 부분들만 가볍게 코멘트로 남겨두었습니다.
그리고 다음번 과제는 커밋을 작업단위로 해보는 연습도 같이 하면 좋을 것 같아요
https://www.notion.so/Git-Commit-Guide-327793efb80180bcb8f9c357c580a48d
Collaborator
There was a problem hiding this comment.
현재 사용중이지 않은 스타일들은 정리해도 좋을 것 같아요! css는 기본적으로 전역으로 적용되기 때문에 사용하지 않는 스타일들이 남아있을 경우 추후 스타일 충돌을 유발할 수 있습니다.
| import TodoCard from "./TodoCard"; | ||
|
|
||
| function TodoList() { | ||
| return ( |
Collaborator
There was a problem hiding this comment.
현재 할 일 목록은 의미상 리스트이기 때문에, div 대신 ul / li 구조로 작성하면 조금 더 시맨틱한 마크업이 될 것 같습니다.
| return ( | ||
| <div className="heading"> | ||
| <div className="icon">✅</div> | ||
| <div className="title">오늘의 할 일</div> |
Collaborator
There was a problem hiding this comment.
div대신 h1이나h2 같은 태그를 사용하시면 페이지가 더 시맨틱한 구조를 가질 수 있습니다
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
✅ 제출 정보
✅ 체크리스트 (필수)
main이 아니라 내 GitHub 핸들 브랜치(<handle>)다<handle>-week-xx형식이다🧩 구현 내용 요약
❓ 궁금한 점