-
Couldn't load subscription status.
- Fork 3
Qi2 001 전체 홈페이지 완성도 블로그 실시간 수정 #132
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
Merged
The head ref may contain hidden characters: "QI2-001_\uC804\uCCB4-\uD648\uD398\uC774\uC9C0-\uC644\uC131\uB3C4-\uBE14\uB85C\uADF8-\uC2E4\uC2DC\uAC04-\uC218\uC815"
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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.
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.
거래 제한 시간을 10분으로 변경하신 부분은 좋습니다. 다만,
600이라는 값은 '매직 넘버'로 사용되어 코드의 가독성을 저해할 수 있습니다. 의미 있는 이름의 상수로 추출하여 사용하는 것을 권장합니다. 예를 들어, 컴포넌트 외부에 다음과 같이 상수를 정의하고1,useState에서 이 상수를 사용하면 코드의 의도가 명확해집니다.Style Guide References
Footnotes
상수는 UPPER_SNAKE_CASE를 사용합니다. (link) ↩