Skip to content

Redux State Shape

David Ting edited this page Aug 29, 2022 · 2 revisions
store = {
    session: {},
    spots: {
       spotId: {
           id,
           ownerId,
           address,
           city,
           lat,
           lng,
           name,
           description,
           price,
           previewImage,
        }
    },
    Reviews: {
        Id: {
            id,
            userId,
            spotId,
            review,
            stars
        }
    }
}
Clone this wiki locally