created dlg table config with dummy data
Some checks failed
checks-impure / test (pull_request) Successful in 28s
checks / test (pull_request) Failing after 2m24s

This commit is contained in:
sara-pervana
2023-11-19 15:37:16 +01:00
parent e4ad34dbd1
commit da251c992c
3 changed files with 36 additions and 2 deletions

View File

@@ -1,5 +1,7 @@
import { DashboardCard } from "@/components/card";
import { NoDataOverlay } from "@/components/noDataOverlay";
import CustomTable from "@/components/table";
import { DLGTableConfig, DLGdummyData } from "@/mock/DLG";
export const RecentActivity = () => {
return (
@@ -7,6 +9,10 @@ export const RecentActivity = () => {
<div className="flex w-full justify-center align-middle">
<NoDataOverlay label="No Activity yet" />
</div>
<div>
<CustomTable data={DLGdummyData} configuration={DLGTableConfig} />
</div>
</DashboardCard>
);
};