First, let’s make sure we’re talking about the same thing: function App() { return ( <BrowserRouter> <Redirect from="/old-route" to="/new-route" /> {/* ... more routes etc... */} </BrowserRouter> ) } (Or however else you might accomplish the same thing in your ...

I’ve been building React applications since 2015. Since then, React was the biggest single productivity boost for my development by a long shot. React’s declarative model for rendering UI based on state drastically simplified the way I thought about building ...