import React from "react"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui"; import type { ReplicationControllerInfo } from "@/lib/tauriCommands"; interface ReplicationControllerListProps { items: ReplicationControllerInfo[]; clusterId: string; namespace?: string; } export function ReplicationControllerList({ items }: ReplicationControllerListProps) { return (