Renders all the <link>
tags created by the route module's links
export. You should render it inside the <head>
of your document.
import { Links } from "react-router";
export default function Root() {
  return (
    <html>
      <head>
        <Links />
      </head>
      <body></body>
    </html>
  );
}
function Links({ nonce }: LinksProps): React.JSX.Element