I have a table in griddle (v 1.13.1) and I want to highlight some rows.
var data = [{highlight:true, name:"Abc"},
{highlight:false, name:"Abc"},
{highlight:true, name:"Abc"}]
<Griddle
data={data} />
I want to add class to all rows, which have highlight==true. How can I do that?