26 lines
863 B
TypeScript
26 lines
863 B
TypeScript
"use client";
|
|
import { Box } from "@mui/material";
|
|
import { GeneralHealthCard } from "../../GeneralHealthCard/GeneralHealthCard";
|
|
import { TransactionsWaitingApproval } from "../../TransactionsWaitingApproval/TransactionsWaitingApproval";
|
|
import { FetchReport } from "../../FetchReports/FetchReports";
|
|
import { Documentation } from "../../Documentation/Documentation";
|
|
import { AccountIQ } from "../../AccountIQ/AccountIQ";
|
|
import { WhatsNew } from "../../WhatsNew/WhatsNew";
|
|
import { TransactionsOverView } from "../../TransactionsOverview/TransactionsOverview";
|
|
|
|
export const DashboardHomePage = () => {
|
|
return (
|
|
<>
|
|
<Box sx={{ p: 2 }}>
|
|
<GeneralHealthCard />
|
|
</Box>
|
|
<TransactionsOverView />
|
|
<FetchReport />
|
|
<TransactionsWaitingApproval />
|
|
<Documentation />
|
|
<AccountIQ />
|
|
<WhatsNew />
|
|
</>
|
|
);
|
|
};
|