Report Profit Loss

This commit is contained in:
efrilm
2025-09-11 18:20:40 +07:00
parent a1d23cad9e
commit f2eb142dec
5 changed files with 242 additions and 4 deletions
@@ -0,0 +1,22 @@
import ReportTitle from '@/components/report/ReportTitle'
import ReportProfitLossCard from '@/views/apps/report/profit-loss/ReportProfitLossCard'
import ReportProfitLossContent from '@/views/apps/report/profit-loss/ReportProfitLossContent'
import Grid from '@mui/material/Grid2'
const ProfiltLossPage = () => {
return (
<Grid container spacing={6}>
<Grid size={{ xs: 12 }}>
<ReportTitle title='Laba Rugi' />
</Grid>
<Grid size={{ xs: 12 }}>
<ReportProfitLossCard />
</Grid>
<Grid size={{ xs: 12 }}>
<ReportProfitLossContent />
</Grid>
</Grid>
)
}
export default ProfiltLossPage