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