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