I'm using this adazzle component: https://github.com/adazzle/react-data-grid
I am trying to figure out how to create a clickable link. They have an example of a cell formatter here: http://adazzle.github.io/react-data-grid/examples.html#/custom-formatters
However, the formatter only gets passed a single value. Since the formatter only gets one value passed to it, I have no way of creating a link in the format:
const formatter = ({ value }) => (
<a href=`${value.id}`>{value.name}</a>
)
The problem with the above code is value is not an object. It only passes down a single string, etc.
Does anyone using react-data-grid
know how to solve this problem?