import { Link } from "react-router"; export function BlogPostItem({ title, idx, datePosted, summary, }: { title: string; idx: number; datePosted: string; summary: string; }) { return ( <>

#{idx + 1}

{title}

Posted on {datePosted}

{summary.length > 100 ? summary.substring(0, 100) + "..." : summary}

); }