I'm trying Griddle grid component for React. When I pass an array of objects with primitive fields everything works fine
<Griddle results={[{id: 42}]}/> // works
but when there are objects in fields, it shows an empty table
<Griddle results={[{id: {value: 42}}]}/> // doesn't work
I have complex objects in fields and custom components to display them but the table is just empty. How do I make it work?