mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-01 19:32:27 +08:00
9 lines
199 B
JavaScript
9 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;
|
|
}
|