import { type GridColDef } from "@mui/x-data-grid"; import { CustomDataGrid } from "../../components/CustomDataGrid"; import { DeleteButton, EditButton, List, ShowButton, useDataGrid, } from "@refinedev/mui"; import React from "react"; import { languageStore } from "../../store/LanguageStore"; import { observer } from "mobx-react-lite"; export const CountryList = observer(() => { const { language } = languageStore; const { dataGridProps } = useDataGrid({ resource: "country", meta: { headers: { "Accept-Language": language, }, }, }); const columns = React.useMemo( () => [ { field: "code", headerName: "Код", type: "string", minWidth: 150, align: "left", headerAlign: "left", }, { field: "name", headerName: "Название", type: "string", minWidth: 150, flex: 1, }, { field: "actions", headerName: "Действия", cellClassName: "country-actions", minWidth: 120, display: "flex", align: "right", headerAlign: "center", sortable: false, filterable: false, disableColumnMenu: true, renderCell: function render({ row }) { return ( <> ); }, }, ], [] ); return ( row.code} /> ); });