import React from "react"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui"; import type { ResourceQuotaInfo } from "@/lib/tauriCommands"; interface ResourceQuotaListProps { resourcequotas: ResourceQuotaInfo[]; clusterId: string; namespace: string; } export function ResourceQuotaList({ resourcequotas }: ResourceQuotaListProps) { return (