'use client' import React from 'react' export function LoadingSkeleton() { return (
{[1, 2, 3].map(i => (
))}
) }