import { SkeletonText } from '@chakra-ui/react'; import React from 'react'; import { Td, Tr } from 'react-super-responsive-table'; const SkeletonList: React.FC = () => { const lengths = [1, 2, 3, 4, 5]; return ( <> {lengths.map((index) => ( ))} ); }; export default SkeletonList;