import React from "react"; const ProjectCompletionChartSkeleton = () => { return (

{/* Keep a fixed height so card doesn't shrink */}
{Array.from({ length: 5 }).map((_, i) => (
))}
); }; export default ProjectCompletionChartSkeleton;