import { Skeleton } from '@/components/ui/skeleton' import React from 'react' const loading = () => { return (
{Array.from({ length: 10 }).map((_, index) => ( ))}
) } export default loading