'use client' import React from 'react' import { Skeleton } from '../ui-v2/skeleton' export const SearchSkeleton = () => { return (
{Array.from({ length: 4 }).map((_, index) => (
))}
) }