16 lines
270 B
TypeScript
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;
|