Files
Practice-1/src/components/albums/AlbumShow.tsx
T
2025-01-28 11:26:29 +01:00

11 lines
339 B
TypeScript

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>
);