추가된 페이지에 대한 코드분할 적용, 일부 Common 폴더 내 컴포넌트 위치 이동 및 리스트의 누락된 key 속성 추가 #34
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.
개요
일부 컴포넌트 폴더 이동
누락된 key 속성 추가
<Card key={card.id}/>
형식으로 지정한 것이 문제였음. 따라서 Card 컴포넌트 자체가 아닌 그 내부에 구성된 요소인<div key={card.id}>~</div>
형식으로 키를 추가하여 개선새로 추가된 페이지에 대한 코드 분리 적용