React Router v7 已發佈。 查看文件
連結

<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 授權