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