import { Checkbox, Flex, Skeleton } from '@chakra-ui/react' import React from 'react' type LoadingRowsProps = { totalColumns: number } export const LoadingRows = ({ totalColumns }: LoadingRowsProps) => { return ( <> {Array.from(Array(3)).map((row, idx) => ( {Array.from(Array(totalColumns)).map((cell, idx) => { return ( ) })} ))} ) }