generated from Luis/nextjs-python-web-template
major changes in the layout and added most components
This commit is contained in:
24
pkgs/ui/src/app/home/page.tsx
Normal file
24
pkgs/ui/src/app/home/page.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
import { NoDataOverlay } from "@/components/noDataOverlay";
|
||||
import SummaryDetails from "@/components/summary_card";
|
||||
import CustomTable from "@/components/table";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div className="m-10">
|
||||
<SummaryDetails
|
||||
entity={{ name: "Home", details: [] }}
|
||||
hasRefreshButton={false}
|
||||
/>
|
||||
|
||||
<div>
|
||||
<h4>Home View Table</h4>
|
||||
<CustomTable data={[]} configuration={[]} />
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h4>Sequence Diagram</h4>
|
||||
<NoDataOverlay label="No Activity yet" />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user