Meta
Allows to export metadata HTML tags
import type { MetaFunction } from "@remix-run/react";
export const meta: MetaFunction = () => [
{ title: "Design & Develop | Meta" },
{ name: "description", content: "This is a Meta page." },
];
The above code produces the following HTML output:<title>Design & Develop | Meta</title>
<meta name="description" content="This is a Meta page.">