import React from "react"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui"; import type { PersistentVolumeInfo } from "@/lib/tauriCommands"; interface PVListProps { pvs: PersistentVolumeInfo[]; _clusterId: string; } export function PVList({ pvs, _clusterId }: PVListProps) { return (