import Quota from '@/components/Quota'; import { QuotaType } from '@/types/quota'; interface UsageStatsProps { quotas: QuotaType[]; } const UsageStats: React.FC = ({ quotas }) => (
{quotas && quotas.length > 0 ? ( ) : (
)}
); export default UsageStats;