15 lines
509 B
TypeScript
15 lines
509 B
TypeScript
/**
|
||
* Admin → Checkout – cashier station; find bidder, take payment, print receipt.
|
||
* TODO: search bidders, show invoice, call /api/checkout/:bidderId/capture.
|
||
*/
|
||
export default function AdminCheckoutPage() {
|
||
return (
|
||
<main className="p-6 space-y-4">
|
||
<h1 className="text-2xl font-bold">Checkout</h1>
|
||
<div className="border border-dashed border-gray-300 rounded-xl p-8 text-center text-gray-400 text-sm">
|
||
Cashier station — not yet implemented
|
||
</div>
|
||
</main>
|
||
);
|
||
}
|