12 lines
312 B
TypeScript
12 lines
312 B
TypeScript
|
|
import { Show, ShowProps, SimpleShowLayout, TextField } from "react-admin";
|
||
|
|
|
||
|
|
const WhatsappAttachmentShow = (props: ShowProps) => (
|
||
|
|
<Show {...props} title="Whatsapp Attachment">
|
||
|
|
<SimpleShowLayout>
|
||
|
|
<TextField source="id" />
|
||
|
|
</SimpleShowLayout>
|
||
|
|
</Show>
|
||
|
|
);
|
||
|
|
|
||
|
|
export default WhatsappAttachmentShow;
|