Each child in a list should have a unique "key" prop.
'Each child in a list should have a unique "key" prop.'
과 같은 에러가 발생했다. // 에러가 발생했던 컴포넌트 코드
posts.map((post: Posts) => {
return (
<>
<Container key={post.post_id}>
<SubComponent
post_id={post?.post_id}
description={post?.description}
title={post?.title}
/>
</Container>
</>
);
posts.map((post: Posts) => {
return (
<React.Fragment key={post.post_id}>
<Container>
<SubComponent
post_id={post?.post_id}
description={post?.description}
title={post?.title}
/>
</Container>
</React.Fragment>
);
<>,</>
대신 <React.Fragment>,</React.Fragment>
를 사용하여 key 값을 설정해 문제를 해결한다.