import { Link } from "@remix-run/react"; type PostProps = { title: string; description?: string; href: string; }; export function Post({ title, description, href }: PostProps) { return (
{title}
{description}
); }