Report Cash Flow

This commit is contained in:
efrilm
2025-09-11 17:57:00 +07:00
parent b3a41fe0e0
commit a1d23cad9e
6 changed files with 339 additions and 4 deletions
@@ -0,0 +1,22 @@
import ReportTitle from '@/components/report/ReportTitle'
import ReportCashCard from '@/views/apps/report/cash-flow/ReportCashCard'
import ReportCashFlowContent from '@/views/apps/report/cash-flow/ReportCashFlowContent'
import Grid from '@mui/material/Grid2'
const CashFlowPage = () => {
return (
<Grid container spacing={6}>
<Grid size={{ xs: 12 }}>
<ReportTitle title='Arus Kas' />
</Grid>
<Grid size={{ xs: 12 }}>
<ReportCashCard />
</Grid>
<Grid size={{ xs: 12 }}>
<ReportCashFlowContent />
</Grid>
</Grid>
)
}
export default CashFlowPage