链接

<Links />

<Links/> 组件渲染路由模块 links 导出创建的所有 <link> 标签。您应该在 HTML 的 <head> 中渲染它,通常在 app/root.tsx 中。

import { Links } from "@remix-run/react";

export default function Root() {
  return (
    <html>
      <head>
        <Links />
      </head>
      <body></body>
    </html>
  );
}
文档和示例根据以下许可证授权 MIT