import React from "react"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui"; import type { PersistentVolumeClaimInfo } from "@/lib/tauriCommands"; interface PVCListProps { pvcs: PersistentVolumeClaimInfo[]; _clusterId: string; _namespace: string; } export function PVCList({ pvcs, _clusterId, _namespace }: PVCListProps) { return (