React Router API Reference
    Preparing search index...

    Function Meta

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

      Returns Element

      A collection of React elements for <meta> tags

      import { Meta } from "react-router";

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

      @public

      framework