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>
  );
}
function Meta(): React.JSX.Element