8 lines
129 B
TypeScript
8 lines
129 B
TypeScript
export function useCheckout() {
|
|
const handleCheckout = () => {
|
|
// Checkout logic here
|
|
};
|
|
|
|
return { handleCheckout };
|
|
}
|