const SkeletonLine = ({ height = 20, width = "100%", className = "" }) => (
); export const TaskReportListSkeleton = () => { const skeletonRows = 8; // Number of placeholder rows return (
{[...Array(skeletonRows)].map((_, idx) => ( ))}
Activity Assigned Completed Assign On Team Actions
{[...Array(3)].map((_, i) => ( ))}
); };