import React from "react"; import { getAllBooks, SimpleBook } from "../lib/books"; export default function Home(props: Props) { console.log(props.books); return
I am a book
; } interface Props { books: SimpleBook[]; } export async function getServerSideProps() { return { props: { books: await getAllBooks(), }, }; }