import React from "react"; import { Datagrid, DateField, List, NumberField, Pagination, ReferenceField, Show, Tab, TabbedShowLayout, TextField, useTranslate, } from "react-admin"; import PageviewIcon from "@material-ui/icons/Pageview"; import ViewListIcon from "@material-ui/icons/ViewList"; const ReportPagination = props => ( ); export const ReportShow = props => { const translate = useTranslate(); return ( } > } path="detail" > {" "} ); }; export const ReportList = ({ ...props }) => { return ( } sort={{ field: "received_ts", order: "DESC" }} bulkActionButtons={false} > ); };