跳转到内容

Meta

<Meta />

此组件将呈现由路由模块 meta 导出创建的所有 <meta> 标签。您应将其呈现在 HTML 的 <head> 内,通常在 app/root.tsx 中。

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