import { PropsWithChildren } from "react"; import { Link } from "react-router-dom"; export function RouterLink( p: PropsWithChildren<{ to: string; target?: React.HTMLAttributeAnchorTarget }> ): React.ReactElement { return ( {p.children} ); }