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