import { Box, SimpleGrid, Skeleton, SkeletonText, VStack, } from '@chakra-ui/react'; const TemplatesSkeleton = () => { return ( {Array(8) .fill(1) .map((_, i) => ( ))} ); }; export default TemplatesSkeleton;