19 lines
480 B
TypeScript
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
|