import { convertUtc } from "../lib/convertUtc.ts"; import { truncateString } from "../lib/truncate.ts"; import { Post } from "../types/index.ts"; export const PostCard = function PostCard({ post }: { post: Post }) { return (

{post.title}

Written by{" "} {post.first_name} {post.last_name} {" "} at {convertUtc(post.created_at)}

{truncateString(post.body, 15)}

); };