File size: 789 Bytes
be02369 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import React from 'react';
// ====================================================================================
// NOTE: This component is no longer used in the application.
// The Stripe checkout flow has been removed.
// This file is kept to avoid breaking imports but its content is non-functional.
// ====================================================================================
const CheckoutCancelView: React.FC = () => {
return (
<div className="flex items-center justify-center h-screen bg-stone-100">
<div className="text-center p-8">
<h1 className="text-2xl font-bold">View Deprecated</h1>
<p>This view is currently not in use.</p>
</div>
</div>
);
};
export default CheckoutCancelView; |