UNPKG

@malga-checkout/core

Version:
22 lines (21 loc) 403 B
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, }, }, });