import React from "react"; const SkeletonLine = ({ height = 20, width = "100%", className = "" }) => (
); const skeletonStyle = ` @keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } } `; export const ProjectCardSkeleton = () => { return ( <> {/* Inject animation CSS once */}
{/* Header */}
{" "} Projects
{/* Skeleton body */}
); }; export const TeamsSkeleton = () => { return ( <>
{/* Header */}
Teams
{/* Skeleton Body */}
); }; export const TasksSkeleton = () => { return ( <>
{/* Header */}
Tasks
{/* Skeleton Body */}
); };