Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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 }