We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
flowchart TD subgraph state[App state] searchResults end subgraph filters price[price asc/desc] amenities_filter[amenities] end subgraph results[Search results] offers_view[Foto, name, price] end state <--> useAppState useAppState --> filters useAppState <--> results filters_ui --> filters filters --> results subgraph offer_details[Offer details PAGE] details_view[Gallery, name, description, price, amenities] end results -.-> offer_details
searchResults
filters
filters_ui
search results
offer
Book now
The text was updated successfully, but these errors were encountered:
No branches or pull requests
searchResults
state is persistent app statesearchResults
is changingfilters
must be recalculatedfilters_ui
user can adjustsearch results
data setoffer
he should be moved to a separate pageBook now
button (see below)The text was updated successfully, but these errors were encountered: