Fixed Asset Add

This commit is contained in:
efrilm
2025-09-11 14:47:57 +07:00
parent 42b95bb212
commit 9c1b1fc1db
4 changed files with 599 additions and 1 deletions
@@ -0,0 +1,18 @@
import FixedAssetAddForm from '@/views/apps/fixed-assets/add/FixedAssetAddForm'
import FixedAssetAddHeader from '@/views/apps/fixed-assets/add/FixedAssetAddHeader'
import Grid from '@mui/material/Grid2'
const FixedAssetPage = () => {
return (
<Grid container spacing={6}>
<Grid size={{ xs: 12 }}>
<FixedAssetAddHeader />
</Grid>
<Grid size={{ xs: 12 }}>
<FixedAssetAddForm />
</Grid>
</Grid>
)
}
export default FixedAssetPage