Petropoulos Evangelos 394cb68489 change div
2025-06-20 17:07:51 +03:00

16 lines
270 B
TypeScript

'use client';
import { Box } from "@mui/material";
import { HomePage } from "../components/Pages/HomePage/HomePage";
const DashboardPage = () => {
return (
<Box style={{ maxWidth: '100vw' }}>
<HomePage />
</Box>
);
};
export default DashboardPage;