私はreact-router-dom 4を使用しようとしていますが、ルートに直接ナビゲートできません。私はちょうどlocalhost:3000/about
へ行くしようとすると、私はブラウザでが見つかりませんを取得react-router-dom 4ルーティング質問
let Test = (props) => (<div>This is a test component</div>);
let About = (props) => (<div>About us</div>);
class App extends Component {
render() {
return (
<Router>
<div>
<nav>
<NavLink to="/about" activeClassName="selected">About</NavLink>
<NavLink to="/" activeClassName="selected">Test</NavLink>
</nav>
<Route exact path="/" component={Test} />
<Route exact path="/about" component={About} />
</div>
</Router>
)
}
}
:
は、ここに私のコードのサンプルです。しかし、私がちょうどlocalhost:3000
に行くと、について約のリンク、私はちょうどうまくリダイレクトされます。私のコンソールで
、私は私はあなたがWebPACKのを使用していると仮定してい
Uncaught Error: uBlock Origin: aborting content scripts for http://localhost:3000/about at contentscript.js:90
この作品は[現実世界の反応アプリケーション](https://github.com/ModusCreateOrg/budgeting-sample)で見ることができます-app-webpack2) – Grgur