[조원정] sprint8#130
Merged
gyulrangdev merged 47 commits intocodeit-sprint-fullstack:next-조원정from Oct 1, 2025
Hidden character warning
The head ref may contain hidden characters: "next-\uc870\uc6d0\uc815-sprint8"
Merged
Conversation
added 17 commits
August 11, 2025 00:41
gyulrangdev
approved these changes
Oct 1, 2025
Collaborator
gyulrangdev
left a comment
There was a problem hiding this comment.
잘 구조화된 컴포넌트 작성 정말 좋습니다!
Next.js 앱 라우터를 사용할 경우, app 하위에서는 파일 구조 기반으로 라우팅이 이루어지기 때문에, 컴포넌트 폴더를 src 하위로 이동하면 더욱 관리가 편리할 것 같습니다.
예를 들어, app 폴더에서는 라우팅 역할만 담당하고, 필요한 컴포넌트들은 src/components 등 외부 폴더에서 export하여 사용하는 방식으로 구조를 변경해보는 것은 어떨까요?
이번 과제를 통해 Next.js 라는 프레임워크와 React에 대해 한 걸음 가까워지고 SSR과 CSR의 차이점에 대해 경험해보는 기회가 되셨기를 바래요~
고생 많으셨습니다!
Collaborator
There was a problem hiding this comment.
이번 커밋에 node_modules가 포함되어 변경사항이 매우 많아졌네요.
일반적으로 node_modules는 폴더를 .gitignore에 추가해서 git에 올리지 않으니, 참고해주시면 좋을 것 같습니다.
| import { ReactQueryDevtools } from "@tanstack/react-query-devtools"; | ||
| import React, { useState } from "react"; | ||
|
|
||
| const TanstackProvider = ({ children }) => { |
Collaborator
There was a problem hiding this comment.
Provider 컴포넌트 분리하신 점 좋습니다 👍
| mutate: mutateAddComment, | ||
| isPending, | ||
| error, | ||
| } = useMutation({ |
Collaborator
There was a problem hiding this comment.
tanstack query 사용하셔서 서버 상태 관리하신 점이 좋습니다 👍
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.
요구사항
기본
자유 게시판 페이지
게시글 등록 & 수정 페이지
게시글 상세 페이지
심화
주요 변경사항
멘토에게