Add save payment checkbox

This commit is contained in:
Emili Castells Guasch 2024-05-20 20:46:53 +02:00
parent de3fd75f69
commit b7b19cfbc7
2 changed files with 7 additions and 1 deletions

View file

@ -8,5 +8,10 @@ export const CheckoutHandler = ({getCardFieldsForm}) => {
getCardFieldsForm(cardFieldsForm)
}, []);
return null
return (
<>
<input type="checkbox" id="save" name="save"/>
<label htmlFor="save">Save your card</label>
</>
)
}