mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-09-07 14:15:45 +00:00
22 lines
595 B
TypeScript
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;
|