Files
afc2e294-919f-499e-a4bf-542…/src/hooks/useCheckout.ts

8 lines
129 B
TypeScript

export function useCheckout() {
const handleCheckout = () => {
// Checkout logic here
};
return { handleCheckout };
}