removed the Guessers

This commit is contained in:
2025-01-28 11:26:29 +01:00
parent ea5760375a
commit a41832684e
7 changed files with 77 additions and 8 deletions
+11
View File
@@ -0,0 +1,11 @@
import { ReferenceField, Show, SimpleShowLayout, TextField } from 'react-admin';
export const AlbumShow = () => (
<Show>
<SimpleShowLayout>
<ReferenceField source="userId" reference="users" />
<TextField source="id" />
<TextField source="title" />
</SimpleShowLayout>
</Show>
);