import React from "react"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui"; import type { NetworkPolicyInfo } from "@/lib/tauriCommands"; interface NetworkPolicyListProps { networkpolicies: NetworkPolicyInfo[]; clusterId: string; namespace: string; } export function NetworkPolicyList({ networkpolicies }: NetworkPolicyListProps) { return (