<Links />
<Links/> 组件渲染路由模块 links 导出创建的所有 <link> 标签。您应该在 HTML 的 <head> 中渲染它,通常在 app/root.tsx 中。
<Links/>
links
<link>
<head>
app/root.tsx
import { Links } from "@remix-run/react"; export default function Root() { return ( <html> <head> <Links /> </head> <body></body> </html> ); }