Reference Documentation ↗
Renders all the <meta> tags created by route module meta export. You should render it inside the <head> of your HTML.
<meta>
meta
<head>
import { Meta } from "react-router"; export default function Root() { return ( <html> <head> <Meta /> </head> </html> ); }
None