mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-26 19:12:50 +00:00
22 lines
570 B
TypeScript
22 lines
570 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 MedicalCertificatePage() {
|
|
return (
|
|
<Container size="lg" py="xl">
|
|
<FeatureUnavailable
|
|
title="Medical certificate"
|
|
description="Medical certificates are not connected to the backend yet."
|
|
/>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
export default MedicalCertificatePage;
|