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
An example from readme:
const routes = { '/:id': id => sources => YourComponent({props$: Observable.of({id}), ...sources}) }
Here, whenever the id is changed, a new YourComponent is created. It would be nicer to have something like
id
YourComponent
const routes = { '/:id': param$ => sources => YourComponent({param$, ...sources}) }
Where param$ emits values of form {id}
param$
{id}
The text was updated successfully, but these errors were encountered:
Yeah this would be cool, but I'm going to be away for a week. Won't be able to do this myself.
Sorry, something went wrong.
No branches or pull requests
An example from readme:
Here, whenever the
id
is changed, a newYourComponent
is created. It would be nicer to have something likeWhere
param$
emits values of form{id}
The text was updated successfully, but these errors were encountered: