import { Box, Skeleton, Table } from '@rocket.chat/fuselage'; import React, { FC } from 'react'; type LoadingRowProps = { cols: number; }; const LoadingRow: FC = ({ cols }) => {Array.from({ length: cols - 1 }, (_, i) => )} ; export default LoadingRow;