import React from "react";
const SkeletonLine = ({ height = 16, width = "100%", className = "" }) => (
  
);
const VersionListSkeleton = ({ items = 5 }) => {
  return (
    
      {[...Array(items)].map((_, idx) => (
        
          {/* Top row: document name + version/status */}
          
          {/* Upload by row */}
          
            
            
          
          {/* Updated at row */}
          
            
          
        
      ))}