Mitchell Magro ad85a18225 s
2025-06-18 18:24:37 +02:00

18 lines
359 B
TypeScript

'use client';
import React from 'react';
import { Typography, Paper } from '@mui/material';
const DashboardPage = () => {
return (
<div style={{ width: '100vh' }}>
<Typography variant="h4" gutterBottom>
Dashboard Overview
</Typography>
{/* Add your dashboard content here */}
</div>
);
};
export default DashboardPage;