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