Hello ,I have question regarding the data that I can pass as settings to the hot table ?
I got array of objects like
{ name: 'my-salad', status: 'salad', components: [ { tomato: 1, cucumber: 2 } ] }
I would like to have as table
name | status | tomato | cucumber
my salad | salad | 1 | 2
how to pass the data and columns to achieve that ?