경고:목록의 각 아이는 고유한 "키" 소품을 가지고 있어야 합니다. Google Books API를 사용하여 앱을 만들고 있으며 목록에 있는 각 아이들에게 고유한 키를 전달하고 있는 것처럼 보이지만 오류가 사라지지 않습니다.내가 뭔가 잘못하고 있는 게 틀림없는데 뭐가 잘못됐는지 모르겠어. const BookList = (props) => { //map over all of the book items to create a new card for each one in the list const books = props.books.data.items.map((book) => { console.log(book.id); return ( ); }); return {books}; }; 반환 후에 주의해 주세요.con..