1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
import React from "react";
import Box from "@mui/material/Box";
import { DataGrid } from "@mui/x-data-grid";
const columns = [
{ field: "id", headerName: "ID", width: 90 },
{
field: "name",
headerName: "Name",
width: 150,
},
{
field: "next_run_at",
headerName: "Next Run",
width: 150,
},
];
const rows = [
{ id: 1, name: "survey", next_run_at: "Mon 28 Aug 16:35:36 EDT 2023" },
{ id: 2, name: "survey", next_run_at: "Mon 28 Aug 16:35:36 EDT 2023" },
{ id: 3, name: "survey", next_run_at: "Mon 28 Aug 16:35:36 EDT 2023" },
{ id: 4, name: "survey", next_run_at: "Mon 28 Aug 16:35:36 EDT 2023" },
{ id: 5, name: "survey", next_run_at: "Mon 28 Aug 16:35:36 EDT 2023" },
{ id: 6, name: "survey", next_run_at: "Mon 28 Aug 16:35:36 EDT 2023" },
{ id: 7, name: "survey", next_run_at: "Mon 28 Aug 16:35:36 EDT 2023" },
{ id: 8, name: "survey", next_run_at: "Mon 28 Aug 16:35:36 EDT 2023" },
{ id: 9, name: "survey", next_run_at: "Mon 28 Aug 16:35:36 EDT 2023" },
];
export default function SurveysList() {
return (
<Box sx={{ minHeight: "100%", width: "100%" }}>
<DataGrid
rows={rows}
columns={columns}
initialState={{
pagination: {
paginationModel: {
pageSize: 25,
},
},
}}
pageSizeOptions={[25, 50, 100]}
checkboxSelection
disableRowSelectionOnClick
/>
</Box>
);
}
|