Closed johhansantana closed 7 years ago
ok got it working
static buttonAction(cell: number): Object {
return (
<Link href={`/dashboard/reports/subastas/detail?id=${cell}`}>
<a
className="btn btn-outline-primary btn-sm waves-effect"
>
Ver Detalles
</a>
</Link>
)
}
...
<TableHeaderColumn
width={'180'}
dataField='id'
dataFormat={ Index.buttonAction }
dataAlign="center"
>
Acciones
</TableHeaderColumn>
I had before with a regular table this:
How do I add a column that has this?