import { Box, Skeleton, TableRow, TableCell } from '@rocket.chat/fuselage'; import type { ReactElement } from 'react'; import React from 'react'; export const GenericTableLoadingRow = ({ cols }: { cols: number }): ReactElement => ( {Array.from({ length: cols - 1 }, (_, i) => ( ))} );