<Meta />

このコンポーネントは、ルートモジュール meta エクスポートによって作成されたすべての <meta> タグをレンダリングします。通常は app/root.tsx<head> 内でレンダリングする必要があります。

app/root.tsx
import { Meta } from "@remix-run/react";
 
export default function Root() {
  return (
    <html>
      <head>
        <Meta />
      </head>
      <body></body>
    </html>
  );
}