import type { ReactNode } from "react"; import type { Navigate } from "../routing"; export function AppLink({ href, navigate, className, title, children }: { href: string; navigate: Navigate; className?: string; title?: string; children: ReactNode; }) { return ( { event.preventDefault(); navigate(href); }} > {children} ); }