@malga-checkout/core
Version:
Core components for Malga Checkout
22 lines (21 loc) • 403 B
JavaScript
import { createStore } from '@stencil/store';
export const { state } = createStore({
form: {
cardNumber: '',
cvv: '',
installments: '',
name: '',
expirationDate: '',
saveCard: false,
},
validations: {
allFieldsIsBlank: false,
fields: {
name: null,
cardNumber: null,
cvv: null,
installments: null,
expirationDate: null,
},
},
});