11 lines
271 B
TypeScript
11 lines
271 B
TypeScript
import { List, Datagrid, TextField } from "react-admin";
|
|
|
|
const WhatsappAttachmentList = (props) => (
|
|
<List {...props} exporter={false}>
|
|
<Datagrid rowClick="show">
|
|
<TextField source="id" />
|
|
</Datagrid>
|
|
</List>
|
|
);
|
|
|
|
export default WhatsappAttachmentList;
|