I use react-router-dom for routing in my React application. Part of my app extracted in another package. List of dependencies looks like this:
react-router-dom
React
I managed to solve the problem by removing from router.js and including it in app.js
router.js
app.js
export default function Routes() { return ( ); } function App() { return ( ); }