Files
pos-dashboard-v2/src/app/[lang]/(dashboard)/(private)/apps/fixed-assets/add/page.tsx
T
2025-09-11 14:47:57 +07:00

19 lines
480 B
TypeScript

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