Voir le detail d'un livre

This commit is contained in:
2026-06-11 05:52:26 -04:00
parent e438373370
commit 1f9a1e9af8
4 changed files with 40 additions and 1 deletions
+3 -1
View File
@@ -32,7 +32,9 @@ export default function Books() {
<ul>
{books.map((book) => (
<li key={book.isbn}>
<strong>{book.title}</strong> - {book.author}
<Link to={`/books/${book.isbn}`}>
<strong>{book.title}</strong> - {book.author}
</Link>
</li>
))}
</ul>