React Router v4 redirect decorator

from blog Muffin Man, | ↗ original
React Router switched to component based routing starting with the version 4. Redirects are now done by rendering a Redirect component, like this: (Please note that you can use included withRouter decorator but it can cause update blocking and introduce side effects. This is small subset of it.) Redirect to='/redirect-url-here' /> What I...