TorbatYar/frontend/modules/hospitality/features/notifications.tsx
Mortezakoohjani 31a0a34945 feat(loyalty): add complete Loyalty Platform Frontend module
Scaffold frontend/modules/loyalty with types, API client, design system, feature pages, and thin App Router routes. Wire all screens to backend Loyalty service via BFF proxy. Add loyalty docs and update progress.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-27 10:46:45 +03:30

9 lines
338 B
TypeScript

"use client";
import { createHospitalityListPage } from "@/modules/hospitality/components/HospitalityListCrudPage";
import { hospitalityResources } from "@/modules/hospitality/constants/resourceRegistry";
export const NotificationsPage = createHospitalityListPage(hospitalityResources.notifications);
export default NotificationsPage;