Contains head components, related to the document such as style and meta elements.
npm install @react-email/components -E
# or get the individual package
npm install @react-email/head -E
import { Head } from "@react-email/components";
const Email = () => {
return (
<Head>
<title>My email title</title>
</Head>
);
};