export function OnboardingScreen({ description, status, statusError, ownerEmail }) { return `

Step 1

Map how work moves through your inbox

${ownerEmail ? escapeHtml(ownerEmail) : "Detecting Gmail account..."}

${escapeHtml(status)}

`; } function escapeHtml(value) { return String(value) .replaceAll("&", "&") .replaceAll("<", "<") .replaceAll(">", ">"); }