import Link from 'next/link' export default function Post({ title, body, id }) { return (

{title}

{body}

Read more...
) }