This is driving me crazy. When I try to use React Router\'s Link within a nested route, the link updates in the browser but the view isn\'t changing. Yet if I refresh the page t
It's good to share the components code also. However, I tried to recreate the same locally and is working fine for me. Below is the sample code,
import { Route, Link } from 'react-router';
import React from 'react';
import App from '../components/App';
const Home = ({ children }) => (
Hello There Team!!!
{children}
);
const PortfolioDetail = () => (
);
const PortfolioItemDetail = () => (
PortfolioItemDetail
);
const NoMatch = () => (
404
);
module.exports = (
);