generated from Luis/nextjs-python-web-template
28 lines
701 B
TypeScript
28 lines
701 B
TypeScript
"use client";
|
|
|
|
import SummaryDetails from "@/components/summary_card";
|
|
import { Client1SummaryDetails, Client1ConsumerData, Client1ConsumerTableConfig } from "@/mock/client_1";
|
|
import CustomTable from "@/components/table";
|
|
|
|
export default function Client1() {
|
|
return (
|
|
<div className="m-10">
|
|
<SummaryDetails
|
|
hasAttachDetach
|
|
hasRefreshButton
|
|
entity={{
|
|
name: "Client 1",
|
|
details: Client1SummaryDetails,
|
|
}}
|
|
/>
|
|
<div>
|
|
<h4>Consumer View</h4>
|
|
<CustomTable
|
|
data={Client1ConsumerData}
|
|
configuration={Client1ConsumerTableConfig}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|