import React from "react"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui"; import type { JobInfo } from "@/lib/tauriCommands"; interface JobListProps { jobs: JobInfo[]; _clusterId: string; _namespace: string; } export function JobList({ jobs, _clusterId, _namespace }: JobListProps) { return (