change div

This commit is contained in:
Petropoulos Evangelos 2025-06-20 17:07:51 +03:00
parent 8633f8f4b4
commit 394cb68489

View File

@ -1,13 +1,14 @@
'use client';
import { Box } from "@mui/material";
import { HomePage } from "../components/Pages/HomePage/HomePage";
const DashboardPage = () => {
return (
<div style={{ maxWidth: '100vw' }}>
<Box style={{ maxWidth: '100vw' }}>
<HomePage />
</div>
</Box>
);
};