import React from "react"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui"; import type { DaemonSetInfo } from "@/lib/tauriCommands"; interface DaemonSetListProps { daemonsets: DaemonSetInfo[]; clusterId: string; namespace: string; } export function DaemonSetList({ daemonsets, clusterId, namespace }: DaemonSetListProps) { return (