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

     1  'use strict';
     2  
     3  export const shop = {
     4    type: undefined,
     5    products: [],
     6    productInfo: undefined
     7  };
     8  
     9  export const insurance = {
    10    contractTypes: undefined,
    11    contractInfo: undefined
    12  };
    13  
    14  export const payment = {
    15    payed: false
    16  };
    17  
    18  export const userMgmt = {
    19    new: true,
    20    user: undefined
    21  };