'use client' import React from 'react' import { Skeleton } from '../skeleton' interface FileManagerSkeletonProps { rows?: number showSearch?: boolean showActions?: boolean } export function FileManagerSkeleton({ rows = 8, showSearch = true, showActions = true }: FileManagerSkeletonProps) { const rowPlaceholders = Array.from({ length: rows }) return (