2026-05-29 02:20:43 +03:30
|
|
|
import { Suspense } from "react";
|
|
|
|
|
import { PosScreen } from "@/components/pos/pos-screen";
|
|
|
|
|
|
2026-05-30 00:28:56 +03:30
|
|
|
/** POS terminal — chrome (sidebar + topbar) is provided by layout.tsx */
|
2026-05-29 02:20:43 +03:30
|
|
|
export default function PosPage() {
|
|
|
|
|
return (
|
2026-05-30 00:28:56 +03:30
|
|
|
<Suspense fallback={null}>
|
|
|
|
|
<PosScreen />
|
|
|
|
|
</Suspense>
|
2026-05-29 02:20:43 +03:30
|
|
|
);
|
|
|
|
|
}
|