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

     1  'use strict';
     2  
     3  import * as ShopActionType from './shopActionTypes';
     4  
     5  export function setShopType(shopType, products) {
     6    return {
     7      type: ShopActionType.SET_SHOP_TYPE,
     8      shopType,
     9      products
    10    };
    11  }
    12  
    13  export function submitProduct(productInfo) {
    14    return {
    15      type: ShopActionType.SUBMIT_PRODUCT,
    16      productInfo
    17    };
    18  }