UNPKG

@nadeshikon/plugin-nextjs

Version:
30 lines (21 loc) 510 B
import Link from 'next/link' const Show = ({ show }) => ( <div> <p>This page uses getStaticProps() to pre-fetch a TV show.</p> <hr /> <h1>Show #{show.id}</h1> <p>{show.name}</p> <hr /> <Link href="/">Go back home</Link> </div> ) export async function getStaticProps(context) { const res = await fetch(`https://api.tvmaze.com/shows/71`) const data = await res.json() return { props: { show: data, }, } } export default Show