Renders all of the <link> tags created by route module LinksFunction export. You should render it inside the <head> of your document.
<link>
<head>
import { Links } from "react-router";export default function Root() { return ( <html> <head> <Links /> </head> <body></body> </html> );} Copy
import { Links } from "react-router";export default function Root() { return ( <html> <head> <Links /> </head> <body></body> </html> );}
Renders all of the
<link>
tags created by route module LinksFunction export. You should render it inside the<head>
of your document.