Report Cash Flow
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user