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 CheckoutSuccessView: 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 CheckoutSuccessView; |