"use client"; import React from "react"; import { Link as RRLink } from "react-router"; import { ensureTrailingSlash } from "./helper"; type NextLinkProps = React.ComponentProps<"a"> & { href: string; replace?: boolean; prefetch?: boolean; scroll?: boolean; shallow?: boolean; }; const Link: React.FC = ({ href, replace, prefetch: _prefetch, scroll: _scroll, shallow: _shallow, ...rest }) => ; export default Link;