mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-26 13:02:50 +00:00
22 lines
621 B
TypeScript
22 lines
621 B
TypeScript
import { Container } from '@mantine/core';
|
|
import { FeatureUnavailable } from '@ema-platform/ui';
|
|
|
|
/**
|
|
* Placeholder until this feature has a backend.
|
|
*
|
|
* This page previously rendered hardcoded sample records, which were
|
|
* indistinguishable from real ones.
|
|
*/
|
|
export function VesselRegistrationReportPage() {
|
|
return (
|
|
<Container size="lg" py="xl">
|
|
<FeatureUnavailable
|
|
title="Vessel registration report"
|
|
description="Vessel registration is not connected to the backend yet, so there is nothing to report on."
|
|
/>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
export default VesselRegistrationReportPage;
|