In one of my API endpoint I have a resource like that :
{
"name": "Foo",
"anotherField": "anotherValue"
"users": [
{
"id": "XXX-XXX-XXX-XXX"
"firstname": "Clément",
"lastname": "Le Biez"
}
]
}
And I would like to display it in the Show view with a Datagrid component :
<Show {...props}>
<SimpleShowLayout>
<TextField source="id" />
<TextField source="name" />
<TextField source="anotherField" />
{# Here use data grid for display users #}
<Datagrid>
</Datagrid>
</SimpleShowLayout>
</Show>
I don't care about ReferenceField of anything like that because I already have users resources in the main entity. What's the tips for use Datagrid without List or Reference Component?