一个渐进增强的 <a href> 包装器,用于启用客户端路由的导航。

import { Link } from "react-router";

<Link to="/dashboard">Dashboard</Link>;

<Link
to={{
pathname: "/some/path",
search: "?query=string",
hash: "#hash",
}}
/>

属性

$$typeof: symbol
defaultProps?: Partial<LinkProps & RefAttributes<HTMLAnchorElement>>
displayName?: string
propTypes?: WeakValidationMap<LinkProps & RefAttributes<HTMLAnchorElement>>