WIP: issue-23 - Custom Table Component #11

Closed
Ghost wants to merge 10 commits from issue-23 into main
Showing only changes of commit 5edf956d2b - Show all commits

View File

@@ -1,9 +1,11 @@
import { Checkbox } from "@mui/material"
export const DLGdummyData = [
{
requester_name: "C1",
"requester_did": "did:sov:test:1234",
"did_resolved": "did:sov:test:123",
"timestamp": "2023.11.01.17:05:48"
"timestamp": "2023.11.01.17:05:48",
}
]
@@ -25,4 +27,9 @@ export const DLGTableConfig = [
key: "timestamp",
label: "Timestamp"
},
{
key: "visible",
label: "Visible",
render: (value: any) => <Checkbox />
}
]