import Link from 'next/link' interface PostLinkProps { href: string children: React.ReactNode } export default function PostLink({ href, ...props }: PostLinkProps) { return {props.children} }