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 { useState, useEffect } from 'react';
import DashboardLayout from '../components/dashboard/DashboardLayout';
import { import {
Box, Box,
Button, Button,
@@ -806,6 +807,7 @@ export default function Buchhaltung() {
}; };
return ( return (
<DashboardLayout>
<Box sx={{ p: 3 }}> <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>
@@ -839,5 +841,6 @@ export default function Buchhaltung() {
/> />
)} )}
</Box> </Box>
</DashboardLayout>
); );
} }