export function generateSkeleton(n) { const tmpl = "
"; let html = ""; for (let i = 0; i < n; i++) { html += tmpl; } return html; }