I get this error meassage when trying to render a react-email as html (following the official docs: react.email/docs/utilities/render
the code:
import { render } from '@react-email/render';
import MBlogEmail from './emails/MBlogEmail';
export default function App() {
return (
<>
<MBlogEmail />
<button onClick={() => {console.log(htmlCode)}}>Get HTML Code!</button>
</>
)
}
const htmlCode = await render(<MBlogEmail />);