/* * Copyright (c) 2026 by Christian Kellner. * Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause */ import './Placeholder.less'; function getPlaceholder(rowCount, className) { const rows = []; for (let i = 0; i < rowCount; i++) { rows.push(
); } const clazz = `place ${className == null ? '' : className}`; return (