-
Notifications
You must be signed in to change notification settings - Fork 959
New issue
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
Where did useQueries Go #364
Comments
Sounds like the version in your package.json is very bad.
|
Let me be a little clearer. What happened to useQueries in version 4. Yes I On Tue, Sep 13, 2016, 02:57 Ryan Florence notifications@github.com wrote:
|
Hi @jamrizzi :) With the major version bump we completely removed query parsing and handling from core. The You can still get the query string pretty easily using a 3rd-party query parsing library like query-string. import { parse } from 'query-string'
history.listen(location => {
const query = parse(location.search)
}) |
I have wrote a library history-query-enhancer which enhance history with a high-order function. |
For some reason, modules that my project is depending on, all of a sudden disappeared without a trace. This is very bad and should not happen, especially without documenting the change. The specific module I am looking for is useQueries.
The text was updated successfully, but these errors were encountered: