import { Link } from "@remix-run/react"; type PostProps = { id: string; title: string; createdAt: string; description: string | null; }; export function Post({ title, description, id, createdAt }: PostProps) { return (
{title} {`(${new Date( createdAt ).toLocaleDateString()})`}
{description && (
{description}
)}
); }