<Meta />

This component renders all of the <meta> tags created by your route module meta export. You should render it inside the <head> of your HTML, usually in app/root.tsx.

  1. import { Meta } from "@remix-run/react";
  2. export default function Root() {
  3. return (
  4. <html>
  5. <head>
  6. <Meta />
  7. </head>
  8. <body></body>
  9. </html>
  10. );
  11. }