import { convertUtc } from "../lib/convertUtc.ts"; import { truncateString } from "../lib/truncate.ts"; export const PostCard = function PostCard({ post }: { post: Post }) { return (
); }; export type Post = { post_id: number; author_id: number; first_name: string; last_name: string; title: string; body: string; created_at: string; slug: string; };