import React from "react"; import Link from "next/link"; type Props = { id: string; title: string }; const PostLink: React.FC = (props: Props) => (
  • {props.title}
  • ); export default PostLink;