Files
emaui/apps/portal/src/app/features/medical/pages/MedicalCertificatePage.tsx
2026-07-29 16:53:50 +03:00

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;