import React from "react"; const Table = ({ columns = [], data = [], actions }) => { return (
| {col.label} | ))} {actions &&Action | }
|---|---|
| {col.render ? col.render(row[col.key], row, index) // pass index here : row[col.key]} | ))} {actions && ({actions(row)} | )}