<Links />

The <Links/> component renders all of the <link> tags created by your route module links export. You should render it inside the <head> of your HTML, usually in app/root.tsx.

  1. import { Links } from "@remix-run/react";
  2. export default function Root() {
  3. return (
  4. <html>
  5. <head>
  6. <Links />
  7. </head>
  8. <body></body>
  9. </html>
  10. );
  11. }