Merged
Conversation
bk-git-hub
reviewed
Mar 26, 2026
Collaborator
bk-git-hub
left a comment
There was a problem hiding this comment.
유빈님 정말 고생많으셨습니다 :)
지난주 피드백도 잘 반영되고 특히 완료됨 토글을 input checkbox로 구현한 부분이 굉장히 인상깊었습니다!
아래는 가볍게 다듬어 볼 부분들을 코멘트로 남겨두었습니다
Comment on lines
26
to
+30
| <TodoHeader title="오늘의 할 일" /> | ||
| <TodoList todos={todos} /> | ||
| <TodoList todos={todos} onCheck={onCheck} /> | ||
|
|
||
| <TodoHeader title="오늘의 할 일" /> | ||
| <EmptyList /> |
Collaborator
There was a problem hiding this comment.
다음주에는 이 부분을 리스트가 비어있을 경우에만 EmptyList를 보여주는 방식으로 바꾸시면 될 것 같습니다.
| width: 24px; | ||
| height: 24px; | ||
|
|
||
| border-radius: 13421800px; |
Collaborator
There was a problem hiding this comment.
이부분은 제가 figma에 잘못 기입했는데 border-radius: 50%나 9999px정도만 해도 동그라미가 잘 되고 의미 전달도 잘 됩니다.
Comment on lines
+4
to
+9
| export type TodoItem = { | ||
| id: number; | ||
| text: string; | ||
| isChecked: boolean; | ||
| }; | ||
|
|
Collaborator
There was a problem hiding this comment.
현재 TodoItem 타입은 TodoList.tsx에 있고 실제 상태 데이터는 App.tsx에서 관리되고 있어서, 타입의 소유 위치가 조금 애매하게 느껴집니다. 이후에도 해당 타입을 사용 할 예정이라면src/types/todo.types.ts 처럼 공용 타입 파일로 분리해두면 구조가 더 명확해질 것 같습니다.
Comment on lines
+9
to
+14
| const [todos, setTodos] = useState([ | ||
| {id:1, text:'리액트 공식문서 읽기', isChecked:false}, | ||
| {id:2, text:'알고리즘 문제 풀기', isChecked:false}, | ||
| {id:3, text:'운동 30분 하기', isChecked:false}, | ||
| {id:4, text:'프로젝트 회의 준비', isChecked:false}, | ||
| ]); |
Collaborator
There was a problem hiding this comment.
todo 데이터가 컴포넌트 안에 직접 들어가 있는데, App.tsx가 상태 관리와 화면 조합에 더 집중하도록 하려면 todo.data.ts 같은 파일로 분리해두는 것도 좋은 방향입니다.
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형식이다🧩 구현 내용 요약
-체크리스트 구현
-빈 배열 생성
-태그 변경 및 스타일 수정
❓ 궁금한 점