Sample State Shape - HiThereImCam/sneakerz GitHub Wiki


{
    entities: {
        shoes: {
            1: {
                id: 1,
                name: "Air Jordan 5 Retro SE 'What The'",
                brand: "Air Jordan",
                description: "The Air Jordan 5 Retro SE ‘What The’ celebrates the 30th 
                anniversary of the classic silhouette with a mashup design...",
                releaseDate: "2020-11-28",
                sku: "CZ5725 700",
                upperMaterial: "Suede",
                mainColor: "Multi-Color",
                colorway: "Varsity Maize/Court Purple/Ghost Green/Solar Orange",
                designer: "Tinker Hatfield"  
                silhouette: "Air Jordan 5",
                technology: "Air", 
                category: "Lifestyle"
            }
        },
        users: {
            24: {
                id: 12,
                email: "[email protected]"        
            },
            8: {
                id: 8,
                email: "[email protected]"
            },
            21: {
                id: 21,
                email: "[email protected]"
            }
        },
        cart: {
            1: {
                userId: 8,
                listingId: 25
            },
            2: {
                userId: 8,
                listingId: 84
            }
        }
    },
    session: { currentUserId: 8 },
    ui: {
        loading: true/false
    },
    errors: {
        login: ["Incorrect username/password combination. Please try again."]
    }
}