import { Skeleton } from '@/components/ui/skeleton' import React from 'react' const ChartSkeleton = () => { return ( <Skeleton className=" rounded-md bg-white/50 w-full min-h-[200px] h-full" /> ) } export default ChartSkeleton