// ProjectProgressChartSkeleton.jsx import React from "react"; const ProjectProgressChartSkeleton = () => { return (
{/* Left: Title */}
{/* Row 2: Time Range Buttons */}
{Array(7) .fill(0) .map((_, idx) => ( ))}
); }; export default ProjectProgressChartSkeleton;