<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> ); }