task-managment / src / app / (home) / _components / ChartSkeleton.tsx
ChartSkeleton.tsx
Raw
import { Skeleton } from '@/components/ui/skeleton'
import React from 'react'

const ChartSkeleton = () => {
  return (
    
    <Skeleton className=" rounded-md bg-white/50 w-full  min-h-[300px] md:min-h-[360px] h-full" />

   
  )
}

export default ChartSkeleton