rsnext/examples/with-static-export/components/post.js

13 lines
247 B
JavaScript

import Link from 'next/link'
export default function Post({ title, body, id }) {
return (
<article>
<h2>{title}</h2>
<p>{body}</p>
<Link href={`/post/${id}`}>
<a>Read more...</a>
</Link>
</article>
)
}