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

22 lines
548 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 WaiverQueuePage() {
return (
<Container size="lg" py="xl">
<FeatureUnavailable
title="Waiver queue"
description="Waiver applications are not connected to the backend yet."
/>
</Container>
);
}
export default WaiverQueuePage;