import { Box } from '@mui/material';
import React from 'react';
import { UnderConstruction } from '../UnderConstruction';

export function Reporting() {
  return (
    <div className="">
      <Box sx={{ height: '90%' }}>
        <UnderConstruction></UnderConstruction>
      </Box>
    </div>
  );
}
