Repository URL to install this package:
|
Version:
2.7.17 ▾
|
import { action, observable } from 'xmobx/mobx'
import { PaymentCardState } from './typings'
class PaymentCardInstance implements PaymentCardState {
@observable shouldShowRemoveCard = false
@action.bound
handleRemoveView() {
this.shouldShowRemoveCard = !this.shouldShowRemoveCard
console.log('Remove Card Visible', this.shouldShowRemoveCard)
}
}
export { PaymentCardInstance }