Skip to content

Instantly share code, notes, and snippets.

@davidfurlong
Created January 24, 2018 09:58
Show Gist options
  • Save davidfurlong/0db76aad944e6fd8a56f2971641686d6 to your computer and use it in GitHub Desktop.
Save davidfurlong/0db76aad944e6fd8a56f2971641686d6 to your computer and use it in GitHub Desktop.
React-router 4 Exact redirect
// React-router 4 doesn't support 'exact' redirects. Very annoying. This fixes that.
import React from 'react';
import { Route, Redirect } from 'react-router-dom';
const RedirectExact = ({ from, to }) => (
<Route exact path={from} render={() => (
<Redirect from={from} to={to} />
)} />
);
export default RedirectExact;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment