Files
QMS/fe/web/customer-app/app/page.tsx
T
2026-07-21 10:24:14 +08:00

10 lines
223 B
TypeScript

import CustomerTicketFlow from "@/components/CustomerTicketFlow";
export default function Home() {
return (
<div className="flex min-h-full flex-1 flex-col bg-zinc-50">
<CustomerTicketFlow />
</div>
);
}