2025-06-18 18:36:28 +02:00

17 lines
313 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>
</div>
);
};
export default DashboardPage;