import { Link } from "remix"; export function ExampleDoc({ id, title, path, }: { id: string; title: string; path?: string; }) { return ( {title} ); }