跳转到内容

Links

<Links />

<Links/> 组件会呈现由路由模块 links 导出创建的所有 <link> 标签。您应将其呈现在 HTML 的 <head> 内,通常在 app/root.tsx 中。

app/root.tsx
import { Links } from "@remix-run/react";
export default function Root() {
return (
<html>
<head>
<Links />
</head>
<body></body>
</html>
);
}