Meta

Meta

Summary

Reference Documentation ↗

Renders all the <meta> tags created by the route module's meta export. You should render it inside the <head> of your document.

import { Meta } from "react-router";

export default function Root() {
  return (
    <html>
      <head>
        <Meta />
      </head>
    </html>
  );
}

Signature

function Meta(): React.JSX.Element
Docs and examples CC 4.0
Edit