import Link from 'next/link'; import { Table, TableHeader, TableBody, TableRow, TableCell, TableColumn, Button, Icon, } from 'react-basics'; import styles from './TeamsTable.module.css'; export default function TeamMembersTable({ columns = [], rows = [] }) { return ( {(column, index) => { return ( {column.label} ); }} {(row, keys, rowIndex) => { const { id } = row; row.action = (
); return ( {(data, key, colIndex) => { return ( {data[key]} ); }} ); }}
); }