State Shape - nullgar/sky-bnb GitHub Wiki

Working State Shape

    session: {},
    spots: {
        spotId: {
            spotData,
            images: {ImageData}
        },
        optionalOrderedList: []
    },
    Reservations: {
        reservationId: {
            reservationData,
            user: {userData of user that booked}.
            location: {locationData for the booking}
        },
        optionalOrderedList: []
    }
}

*This is a work in progress