Skip to content

Redux Store State

Amanda Vien edited this page Nov 7, 2022 · 1 revision
store = {
  session: {
    user: {}
  },
  designs: {
    allDesigns: {
      [designId]: {
        designData
        }
      }
    },
    singleDesign: {
      designData
    }
  },
  brands: {
    allBrands: {
      [brandId]: {
        brandData
      },
    singleBrand: {
      brandData
    },
  },
};
Clone this wiki locally