ix: use DashboardLayout wrapper in Buchhaltung page
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
import { useState, useEffect } from 'react';
|
import { useState, useEffect } from 'react';
|
||||||
|
import DashboardLayout from '../components/dashboard/DashboardLayout';
|
||||||
import {
|
import {
|
||||||
Box,
|
Box,
|
||||||
Button,
|
Button,
|
||||||
@@ -806,7 +807,8 @@ export default function Buchhaltung() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box sx={{ p: 3 }}>
|
<DashboardLayout>
|
||||||
|
<Box sx={{ p: 3 }}>
|
||||||
<Box sx={{ display: 'flex', alignItems: 'center', mb: 3, gap: 2 }}>
|
<Box sx={{ display: 'flex', alignItems: 'center', mb: 3, gap: 2 }}>
|
||||||
<Typography variant="h4" fontWeight={700}>Buchhaltung</Typography>
|
<Typography variant="h4" fontWeight={700}>Buchhaltung</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
@@ -838,6 +840,7 @@ export default function Buchhaltung() {
|
|||||||
onJahrChange={setSelectedJahrId}
|
onJahrChange={setSelectedJahrId}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</Box>
|
</Box>
|
||||||
|
</DashboardLayout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user