github.com/muhammedhassanm/blockchain@v0.0.0-20200120143007-697261defd4d/build-blockchain-insurance-app-master/web/src/shop/actions/paymentActions.js (about)

     1  'use strict';
     2  
     3  import * as PaymentActionType from './paymentActionTypes';
     4  
     5  export function pay() {
     6    return {
     7      type: PaymentActionType.COMPLETE_PAYMENT,
     8      payed: true
     9    };
    10  }