major changes in the layout and added most components
Some checks failed
checks-impure / test (pull_request) Successful in 27s
checks / test (pull_request) Failing after 2m18s

This commit is contained in:
sara-pervana
2023-11-21 23:46:32 +01:00
parent 1044ce3102
commit c53fdb7d86
18 changed files with 304 additions and 32 deletions

View 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>
);
}