import { Box } from "@mui/material"; import { DataGrid, GridColDef, GridToolbar } from "@mui/x-data-grid"; import { usePromocodeStore } from "@root/stores/promocodes"; import theme from "@root/theme"; const columns: GridColDef[] = [ { field: "id", headerName: "ID", width: 30, sortable: false }, { field: "name", headerName: "Название промокода", width: 200, sortable: false, }, { field: "endless", headerName: "Бесконечный", width: 120, sortable: false }, { field: "from", headerName: "От", width: 120, sortable: false }, { field: "dueTo", headerName: "До", width: 120, sortable: false }, { field: "privileges", headerName: "Привилегии", width: 210, sortable: false, }, ]; export const PromocodesList = () => { const { promocodes } = usePromocodeStore(); return ( console.log("datagrid select")} /> ); };