import type { TPostListItem } from "@/types/docs.type"; import Link from "next/link"; export const MorePostLinks = (props: { prevPostListItem: TPostListItem | null; nextPostListItem: TPostListItem | null; }) => { return ( ); };