Files
ETB/ETB-FrontEnd/src/pages/Reporting/ReportingDashboard.tsx
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

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;