import React from 'react'; import { renderToString } from 'react-dom/server'; import { EmailAnalyticsApp } from './components.js'; export default function (): string { const html = renderToString(); return `Email Analytics${html}`; }