generated from Luis/nextjs-python-web-template
major changes in the layout and added most components
This commit is contained in:
@@ -1,5 +1,30 @@
|
||||
"use client";
|
||||
|
||||
import {
|
||||
DLGResolutionDummyData,
|
||||
DLGResolutionTableConfig,
|
||||
DLGSummaryDetails,
|
||||
} from "@/mock/dlg";
|
||||
import CustomTable from "@/components/table";
|
||||
import SummaryDetails from "@/components/summary_card";
|
||||
|
||||
export default function DLG() {
|
||||
return <div>DLG Page</div>;
|
||||
return (
|
||||
<div className="m-10">
|
||||
<SummaryDetails
|
||||
hasRefreshButton
|
||||
entity={{
|
||||
name: "Distributed Ledger Gateway",
|
||||
details: DLGSummaryDetails,
|
||||
}}
|
||||
/>
|
||||
<div>
|
||||
<h4>DID Resolution View</h4>
|
||||
<CustomTable
|
||||
data={DLGResolutionDummyData}
|
||||
configuration={DLGResolutionTableConfig}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user