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

22 lines
560 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 CoCReviewPage() {
return (
<Container size="lg" py="xl">
<FeatureUnavailable
title="CoC / CoP review"
description="Certificate of Competency review is not connected to the backend yet."
/>
</Container>
);
}
export default CoCReviewPage;