Hi!
I would like to parametrize the cell component in grid.
Something like
<Grid columns={[
{id: "id"},
{id: "name"},
{id: "---zzz---", cell: MyButton}, // <-- this works
{id: "---xxx---", cell <MyButton color="red" href=`/some/entity/{id}` />} // <-- this is error
]} />
Thanks!