Questions tagged [react-router-redux]

A library of bindings to keep react-router and redux in sync (formerly known as redux-simple-router).

A library of bindings to keep react-router and redux in sync (formerly known as redux-simple-router).


Related tags

502 questions
0
votes
1 answer

Navigate to another path with redux-simple-router

I'm trying to navigate to another path with redux-simple-router. Here's my component fragment (see handleSubmit method): import React, { Component } from 'react' import { bindActionCreators } from 'redux' import { connect } from…
Dmitry Shvedov
  • 2,848
  • 4
  • 29
  • 45
0
votes
1 answer

Redux Simple Router pushPath not updating URL

I ported redux-simple-router into a boilerplate react/redux isomorphic kit (https://github.com/erikras/react-redux-universal-hot-example). I have a simple click event handler that calls 'pushPath' from redux-simple-router. However, pushPath doesn't…
capkutay
  • 183
  • 2
  • 11
-1
votes
1 answer

How to add react frontend to spring boot rest?

I have a react frontend that I want to use with my springboot rest api. I used nwb to create my react app. I'm trying to use the frontend-maven-plugin but I can not get my react app to work. The rest api works great. Can't find any info online. …
Roro
  • 297
  • 5
  • 17
-1
votes
2 answers

React-Route did not match any routes

i'm following this tutorial step by step but when i run "npm run start" i get the next error: Warning: [react-router] Location "/todolist" did not match any routes Any advice to fix that?
-1
votes
3 answers

Trouble in Routing

I am using react-router-dom and react-router-redux for routing in React. I am unable to route to the relative path. In my case '/login. Here is the code. https://codesandbox.io/s/y73931q871 Also if I run the code in the local it throws:
-1
votes
1 answer

What difference between using `compose` for middleware or list them in `applyMiddleware`

What the difference between these configureStore functions and where has gone initialState argument? import { createStore, applyMiddleware } from 'redux'; import logger from 'redux-logger'; import thunk …
Firanolfind
  • 1,588
  • 1
  • 15
  • 32
-1
votes
1 answer

Redux-Router with immutable error

I'm trying to implement this example to get my boilerplate router/redux/immutable working: https://github.com/sjparsons/react-router-redux-immutable However I'm coming across an error I don't see documented elsewhere and I'm not sure where to go…
1 2 3
33
34