Meta
react-router

Meta

Meta(): Element

Renders all the <meta> tags created by route module MetaFunction exports. You should render it inside the <head> of your HTML.

import { Meta } from "react-router";

export default function Root() {
  return (
    <html>
      <head>
        <Meta />
      </head>
    </html>
  );
}
Docs and examples CC 4.0