generated from Luis/nextjs-python-web-template
major changes in the layout and added most components
This commit is contained in:
17
pkgs/ui/src/app/client-1/page.tsx
Normal file
17
pkgs/ui/src/app/client-1/page.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import SummaryDetails from "@/components/summary_card";
|
||||
import { Client1SummaryDetails } from "@/mock/client_1";
|
||||
|
||||
export default function Client1() {
|
||||
return (
|
||||
<div className="m-10">
|
||||
<SummaryDetails
|
||||
hasAttachDetach
|
||||
hasRefreshButton
|
||||
entity={{
|
||||
name: "Client 1",
|
||||
details: Client1SummaryDetails,
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user