Get All Books API #13

Merged
a258wang merged 10 commits from feat/api-all-books into main 2022-02-23 00:17:03 -05:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit b4e216c0be - Show all commits

View File

@ -7,7 +7,7 @@ export default function Home(props: Props) {
<ul>
{props.books.map((book, idx) => {
return (
<li key={`${idx}_${book.isbn ?? ""}`}>
<li key={`${idx}_${book.id}`}>
{book.id}; {book.title}; {book.authors}; {book.isbn}
</li>
);