import React from "react"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui"; import type { StatefulSetInfo } from "@/lib/tauriCommands"; interface StatefulSetListProps { statefulsets: StatefulSetInfo[]; clusterId: string; namespace: string; } export function StatefulSetList({ statefulsets, clusterId: _clusterId, namespace: _namespace }: StatefulSetListProps) { return (