17 lines
313 B
TypeScript
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;
|