import React from "react"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui"; import { Button } from "@/components/ui"; import type { ConfigMapInfo } from "@/lib/tauriCommands"; interface ConfigMapListProps { configmaps: ConfigMapInfo[]; clusterId: string; namespace: string; } export function ConfigMapList({ configmaps }: ConfigMapListProps) { return (