import Link from "next/link"; //import DateFormatter from '@/components/DateFormatter' export default function PostPreview(props) { return (

{props.title}

By {props.author}

{props.description}

Posted on {props.date}

) }