18 lines
420 B
TypeScript
18 lines
420 B
TypeScript
import React from 'react';
|
|
import { Box, Typography } from '@mui/material';
|
|
|
|
const ReportingDashboard: React.FC = () => {
|
|
return (
|
|
<Box>
|
|
<Typography variant="h4" gutterBottom>
|
|
Reporting Dashboard
|
|
</Typography>
|
|
<Typography variant="subtitle1" color="text.secondary">
|
|
Real-time dashboards and trend analysis
|
|
</Typography>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
export default ReportingDashboard;
|