ix: use DashboardLayout wrapper in Buchhaltung page

This commit is contained in:
Matthias Hochmeister
2026-03-28 19:59:39 +01:00
parent 3871efc026
commit 712afde30e

View File

@@ -1,4 +1,5 @@
import { useState, useEffect } from 'react';
import DashboardLayout from '../components/dashboard/DashboardLayout';
import {
Box,
Button,
@@ -806,7 +807,8 @@ export default function Buchhaltung() {
};
return (
<Box sx={{ p: 3 }}>
<DashboardLayout>
<Box sx={{ p: 3 }}>
<Box sx={{ display: 'flex', alignItems: 'center', mb: 3, gap: 2 }}>
<Typography variant="h4" fontWeight={700}>Buchhaltung</Typography>
</Box>
@@ -838,6 +840,7 @@ export default function Buchhaltung() {
onJahrChange={setSelectedJahrId}
/>
)}
</Box>
</Box>
</DashboardLayout>
);
}