import { getRandomLength } from "../utils"; export const SpreadsheetIssueRowLoader = (props: { columnCount: number }) => (
{[...Array(props.columnCount)].map((_, colIndex) => (
))} ); export const SpreadsheetLayoutLoader = () => (
{[...Array(16)].map((_, rowIndex) => ( ))}
{[...Array(10)].map((_, index) => ( ))}
);