import React from "react"; import { getBook, DetailedBook } from "../lib/books"; export default function Home(props: Props) { return

{props.book.title}

; } interface Props { book: DetailedBook; } export async function getServerSideProps() { return { props: { book: await getBook(2), }, }; }