mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
8 lines
199 B
JavaScript
8 lines
199 B
JavaScript
export function generateSkeleton(n) {
|
|
const tmpl = "<div class=\"component_skeleton\"></div>";
|
|
let html = "";
|
|
for (let i = 0; i < n; i++) {
|
|
html += tmpl;
|
|
}
|
|
return html;
|
|
}
|