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>
9 lines
334 B
TypeScript
9 lines
334 B
TypeScript
"use client";
|
|
|
|
import { createHospitalityListPage } from "@/modules/hospitality/components/HospitalityListCrudPage";
|
|
import { hospitalityResources } from "@/modules/hospitality/constants/resourceRegistry";
|
|
|
|
export const InventoryPage = createHospitalityListPage(hospitalityResources.inventoryOverview);
|
|
|
|
export default InventoryPage;
|