Files
emaui/apps/backoffice/src/app/features/analytics/pages/AnalyticsPage.tsx
2026-07-29 16:53:50 +03:00

22 lines
595 B
TypeScript

import { Container } from '@mantine/core';
import { FeatureUnavailable } from '@ema-platform/ui';
/**
* Placeholder until this feature has a backend.
*
* This page previously rendered invented figures/records that were
* indistinguishable from real ones.
*/
export function AnalyticsPage() {
return (
<Container size="lg" py="xl">
<FeatureUnavailable
title="Analytics"
description="Reporting is not connected to the backend yet. The Logistics overview shows real licence figures in the meantime."
/>
</Container>
);
}
export default AnalyticsPage;