Renders all the <meta> tags created by the route module's meta export. You should render it inside the <head> of your document.
<meta>
meta
<head>
A collection of React elements for <meta> tags
import { Meta } from "react-router";export default function Root() { return ( <html> <head> <Meta /> </head> </html> );}@public Copy
import { Meta } from "react-router";export default function Root() { return ( <html> <head> <Meta /> </head> </html> );}@public
framework
Renders all the
<meta>tags created by the route module'smetaexport. You should render it inside the<head>of your document.